diff --git a/backend/app/services/task_service.py b/backend/app/services/task_service.py index 4db8b17..8c1d857 100644 --- a/backend/app/services/task_service.py +++ b/backend/app/services/task_service.py @@ -551,9 +551,6 @@ async def transfer_task( """ task = await _get_task_or_404(db, task_id) - # 校验:必须等待所有协助分支完成 - await _check_children_done(db, task_id) - # 校验:不能重复完成 if task.status == TASK_STATUS_COMPLETED: raise HTTPException(