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 82c9040 commit 047639cCopy full SHA for 047639c
services/director-v2/src/simcore_service_director_v2/modules/comp_scheduler/_scheduler_dask.py
@@ -361,6 +361,13 @@ async def _process_task_result(
361
else:
362
if isinstance(result, TaskCancelledError):
363
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):
371
372
task_final_state = RunningState.FAILED
373
errors.append(
0 commit comments