diff --git a/deployment/core/tasks.py b/deployment/core/tasks.py index a08aa10..e4d8a5b 100644 --- a/deployment/core/tasks.py +++ b/deployment/core/tasks.py @@ -80,7 +80,6 @@ def get_server_cfg(self, data, server_type): try: server = data.get(server_type) - print("Server", server) # 3. Hydrate self.env for HealthCheck and WaitForReadiness tasks config = { @@ -89,9 +88,7 @@ "address": server.get("address"), "port": str(server.get("port")), } - print("config", config) health_path = data.get("meta").get("health_check") - print("config", health_path) if server_type == "network": config["loc"] = config.get("address") diff --git a/deployment/lib/task_types.py b/deployment/lib/task_types.py index ade65d9..122efa6 100755 --- a/deployment/lib/task_types.py +++ b/deployment/lib/task_types.py @@ -152,7 +152,7 @@ ): """Helper to run shell commands within the project context.""" cwd = str(cwd or os.getcwd()) - self.print(f" [CWD] {cwd}") + # self.print(f" [CWD] {cwd}") self.msg(f" [EXEC] {cmd}") if self.do_dry_run() and dry_run is not False: return