Skip to content

Commit 047639c

Browse files
committed
ongoing
1 parent 82c9040 commit 047639c

File tree

1 file changed

+7
-0
lines changed
  • services/director-v2/src/simcore_service_director_v2/modules/comp_scheduler

1 file changed

+7
-0
lines changed

services/director-v2/src/simcore_service_director_v2/modules/comp_scheduler/_scheduler_dask.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -361,6 +361,13 @@ async def _process_task_result(
361361
else:
362362
if isinstance(result, TaskCancelledError):
363363
task_final_state = RunningState.ABORTED
364+
# elif isinstance(
365+
# result, ComputationalBackendTaskResultsNotReadyError
366+
# ):
367+
# # we did not manage to get the current state of the task
368+
# # so we keep it as is
369+
# task_final_state = task.state
370+
# elif isinstance(result, ComputationalBackendNotConnectedError):
364371
else:
365372
task_final_state = RunningState.FAILED
366373
errors.append(

0 commit comments

Comments
 (0)