Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/forge/controller/provisioner.py
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down
Loading