Skip to content

Commit ebd6be8

Browse files
allenwang28Allen Wang
andauthored
Don't stop throwaway procs (#491)
Co-authored-by: Allen Wang <[email protected]>
1 parent c2049fc commit ebd6be8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/forge/controller/provisioner.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,9 @@ async def get_remote_info(host_mesh: HostMesh) -> tuple[str, str]:
5858
# Fetcher should be a singleton at this point - call_one() will fail otherwise
5959

6060
host, port = await fetcher.get_info.call_one()
61-
await throwaway_procs.stop()
61+
62+
# Stopping this proc is the right thing to do, but Monarch does not yet handle manual stops well.
63+
# await throwaway_procs.stop()
6264
return host, port
6365

6466

0 commit comments

Comments
 (0)