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 818bfb8 commit 6a50b7fCopy full SHA for 6a50b7f
src/data_parse.py
@@ -464,7 +464,10 @@ def parse_debug_line(self, line):
464
raise ValueError(f"task {task_id} state change: from RUNNING (2) to RUNNING (2)")
465
elif "RETRIEVED (4) to RUNNING (2)" in line:
466
print(f"Warning: task {task_id} state change: from RETRIEVED (4) to RUNNING (2)")
467
- task.set_when_running(timestamp)
+ pass
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
471
elif "RUNNING (2) to WAITING_RETRIEVAL (3)" in line: # as expected
472
task.set_when_waiting_retrieval(timestamp)
473
# update the coremap
0 commit comments