feat(mma): Implement worker pool and configurable concurrency for DAG engine and mark track 'True Parallel Worker Execution' as complete

This commit is contained in:
2026-03-06 16:55:45 -05:00
parent 616675d7ea
commit 7da2946eff
5 changed files with 251 additions and 55 deletions

View File

@@ -135,10 +135,6 @@ class ExecutionEngine:
"""
self.dag.cascade_blocks()
ready = self.dag.get_ready_tasks()
if self.auto_queue:
for ticket in ready:
if not ticket.step_mode:
ticket.status = "in_progress"
return ready
def approve_task(self, task_id: str) -> None: