From 1ec6bb49738450ddfbd50a9db5a066bdfb76be9e Mon Sep 17 00:00:00 2001 From: shambupujar Date: Tue, 7 Jan 2025 13:01:11 +0000 Subject: [PATCH] Fix argument mismatch --- node-runner-cli/monitoring/monitoring.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ..