diff --git a/node-runner-cli/monitoring/monitoring.py b/node-runner-cli/monitoring/monitoring.py index 4db6c4b0..1f02cc5e 100644 --- a/node-runner-cli/monitoring/monitoring.py +++ b/node-runner-cli/monitoring/monitoring.py @@ -194,7 +194,7 @@ def template_monitoring_containers(monitoring_config_dir): Helpers.dump_rendered_template(render_template, file_location) @staticmethod - def start_monitoring(composefile, auto_approve=False, remove_volumes=False): + def start_monitoring(composefile, auto_approve=False): print(f"----- output of node monitoring docker compose file {composefile}") run_shell_command(f"cat {composefile}", shell=True) start_monitoring_answer = "" @@ -208,7 +208,7 @@ def start_monitoring(composefile, auto_approve=False, remove_volumes=False): ) if Helpers.check_Yes(start_monitoring_answer) or auto_approve: - DockerCompose.run_docker_compose_up(composefile,remove_volumes) + DockerCompose.run_docker_compose_up(composefile) else: print( f"""Exiting the command ..