We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1d18cf commit 8f5f713Copy full SHA for 8f5f713
services/web/server/src/simcore_service_webserver/director_v2.py
@@ -104,6 +104,9 @@ async def get_computation_task(
104
task_out = ComputationTask.parse_obj(computation_task_out_dict)
105
return task_out
106
except _DirectorServiceError as exc:
107
+ if exc.status == web.HTTPNotFound.status_code:
108
+ # the pipeline might not exist and that is ok
109
+ return
110
log.warning("getting pipeline for project %s failed: %s.", project_id, exc)
111
112
0 commit comments