From fa580f0e8894ac16441cb1e1a008e8ba6c84040c Mon Sep 17 00:00:00 2001 From: Ryan Tanenholz <44756861+ryantanen@users.noreply.github.com> Date: Sun, 9 Mar 2025 17:21:34 -0400 Subject: [PATCH] :bug: Silence docker start --- docker/waypoint/src/waypoint_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/waypoint/src/waypoint_client.py b/docker/waypoint/src/waypoint_client.py index f0487291..69331fb4 100644 --- a/docker/waypoint/src/waypoint_client.py +++ b/docker/waypoint/src/waypoint_client.py @@ -139,7 +139,7 @@ def start(rebuild: bool = False) -> None: sys.exit(1) elif waypoint_state == 1: try: - subprocess.run(["docker", "start", CONTAINER_NAME], check=True) + subprocess.run(["docker", "start", CONTAINER_NAME],stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL, check=True) subprocess.run(["docker", "exec", "-it", CONTAINER_NAME, "bash"], check=False) except subprocess.CalledProcessError: print("\nError: Failed to start waypoint container")