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 b765962 commit b129044Copy full SHA for b129044
services/director-v2/src/simcore_service_director_v2/api/routes/computations.py
@@ -224,6 +224,11 @@ async def _try_start_pipeline(
224
wallet_id = computation.wallet_info.wallet_id
225
wallet_name = computation.wallet_info.wallet_name
226
227
+ if computation.collection_run_id is None:
228
+ raise HTTPException(
229
+ status_code=status.HTTP_422_UNPROCESSABLE_ENTITY,
230
+ detail=f"Project {computation.project_id} has no collection run ID",
231
+ )
232
await run_new_pipeline(
233
app,
234
user_id=computation.user_id,
0 commit comments