This commit is contained in:
MarkLo 2025-11-21 21:56:35 +08:00
parent 15e374d7d0
commit f0a67dc66d
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ async def get_task_status(task_id: str):
Raises:
HTTPException: If task not found
"""
task = task_manager.get_task(task_id)
task = task_manager.get_task_status(task_id)
if not task:
raise HTTPException(status_code=404, detail=f"Task {task_id} not found")