Skip to content

Commit 5af684b

Browse files
committed
task state change
1 parent 6a50b7f commit 5af684b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/data_parse.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -468,6 +468,9 @@ def parse_debug_line(self, line):
468468
elif "RUNNING (2) to DONE (5)" in line:
469469
print(f"Warning: task {task_id} state change: from RUNNING (2) to DONE (5)")
470470
pass
471+
elif "DONE (5) to WAITING_RETRIEVAL (3)" in line:
472+
print(f"Warning: task {task_id} state change: from DONE (5) to WAITING_RETRIEVAL (3)")
473+
pass
471474
elif "RUNNING (2) to WAITING_RETRIEVAL (3)" in line: # as expected
472475
task.set_when_waiting_retrieval(timestamp)
473476
# update the coremap

0 commit comments

Comments
 (0)