Skip to content

Commit

Permalink
Fix argument mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
shambupujar committed Jan 7, 2025
1 parent 97851db commit 1ec6bb4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions node-runner-cli/monitoring/monitoring.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = ""
Expand All @@ -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 ..
Expand Down

0 comments on commit 1ec6bb4

Please sign in to comment.