feat(conductor): Populate abort_events when spawning workers

This commit is contained in:
2026-03-07 15:59:59 -05:00
parent 5f7909121d
commit da011fbc57
2 changed files with 35 additions and 0 deletions

View File

@@ -211,6 +211,9 @@ class ConductorEngine:
)
context_files = ticket.context_requirements if ticket.context_requirements else None
# Initialize abort event before spawning
self._abort_events[ticket.id] = threading.Event()
spawned = self.pool.spawn(
ticket.id,
run_worker_lifecycle,