Skip to content

Commit 4acc6d1

Browse files
authored
feat: 修复任务状态轮询 (#521)
1 parent 8df08fa commit 4acc6d1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

runtime/datamate-python/app/module/cleaning/service/cleaning_task_scheduler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ async def _poll_all_tasks(self):
100100
from datetime import datetime
101101

102102
logger.info("[Polling] Global status polling loop started")
103-
terminal_statuses = {"completed", "failed", "cancelled", "stopped"}
103+
terminal_statuses = {"completed", "failed", "cancelled", "stopped", "not_found"}
104104

105105
while True:
106106
task_ids = list(self._polling_task_ids)

0 commit comments

Comments
 (0)