From 639e122bfdd570bf9cd0168c67b7c5d4a84d44f9 Mon Sep 17 00:00:00 2001 From: Allen Wang Date: Wed, 22 Oct 2025 10:08:12 -0700 Subject: [PATCH] don't stop throaway --- src/forge/controller/provisioner.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/forge/controller/provisioner.py b/src/forge/controller/provisioner.py index cb36b2568..823aca442 100644 --- a/src/forge/controller/provisioner.py +++ b/src/forge/controller/provisioner.py @@ -58,7 +58,9 @@ async def get_remote_info(host_mesh: HostMesh) -> tuple[str, str]: # Fetcher should be a singleton at this point - call_one() will fail otherwise host, port = await fetcher.get_info.call_one() - await throwaway_procs.stop() + + # Stopping this proc is the right thing to do, but Monarch does not yet handle manual stops well. + # await throwaway_procs.stop() return host, port