Skip to content

Commit c500c52

Browse files
🎨 Only run a single function at a time in map endpoint (#8327)
1 parent ffd604e commit c500c52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

services/api-server/src/simcore_service_api_server/api/routes/functions_routes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@ async def _run_single_function(function_inputs: FunctionInputs) -> FunctionJobID
474474
for function_inputs in function_inputs_list
475475
],
476476
reraise=False,
477-
limit=10,
477+
limit=1,
478478
)
479479

480480
# Check if any tasks raised exceptions and raise the first one found

0 commit comments

Comments
 (0)