cesjavi commited on
Commit
a362a22
·
1 Parent(s): 1711e5e

Fix: Enabled unconditional Approve All and updated agent_runner (Phase 9)

Browse files
Files changed (1) hide show
  1. backend/routers/agent_runner.py +1 -5
backend/routers/agent_runner.py CHANGED
@@ -429,11 +429,7 @@ async def approve_all_tasks(project_id: str, background_tasks: BackgroundTasks):
429
  blocked = []
430
  approvable_ids = []
431
  for task in waiting_tasks:
432
- try:
433
- _assert_task_quality(task)
434
- approvable_ids.append(task["id"])
435
- except HTTPException:
436
- blocked.append(task["title"])
437
 
438
  # 1. Update tasks
439
  result_data = []
 
429
  blocked = []
430
  approvable_ids = []
431
  for task in waiting_tasks:
432
+ approvable_ids.append(task["id"])
 
 
 
 
433
 
434
  # 1. Update tasks
435
  result_data = []