We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a50b7f commit 5af684bCopy full SHA for 5af684b
src/data_parse.py
@@ -468,6 +468,9 @@ def parse_debug_line(self, line):
468
elif "RUNNING (2) to DONE (5)" in line:
469
print(f"Warning: task {task_id} state change: from RUNNING (2) to DONE (5)")
470
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
474
elif "RUNNING (2) to WAITING_RETRIEVAL (3)" in line: # as expected
475
task.set_when_waiting_retrieval(timestamp)
476
# update the coremap
0 commit comments