Skip to content
Closed
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
3 changes: 1 addition & 2 deletions tools/process_registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -823,7 +823,7 @@ def _move_to_finished(self, session: ProcessSession):
# ----- Query Methods -----

def is_completion_consumed(self, session_id: str) -> bool:
"""Check if a completion notification was already consumed via wait/poll/log."""
"""Check if a completion notification was already consumed via wait/read_log."""
return session_id in self._completion_consumed

def drain_notifications(self) -> "list[tuple[dict, str]]":
Expand Down Expand Up @@ -949,7 +949,6 @@ def poll(self, session_id: str) -> dict:
}
if session.exited:
result["exit_code"] = session.exit_code
self._completion_consumed.add(session_id)
if session.detached:
result["detached"] = True
result["note"] = "Process recovered after restart -- output history unavailable"
Expand Down