File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
services/web/server/src/simcore_service_webserver/projects Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -756,7 +756,11 @@ async def _start_dynamic_service( # pylint: disable=too-many-statements # noqa
756756 get_redis_lock_manager_client_sdk (request .app ),
757757 lock_key = _nodes_service .get_service_start_lock_key (user_id , project_uuid ),
758758 blocking = True ,
759- blocking_timeout = None ,
759+ blocking_timeout = datetime .timedelta (
760+ seconds = _nodes_service .get_total_project_dynamic_nodes_creation_interval (
761+ get_plugin_settings (request .app ).PROJECTS_MAX_NUM_RUNNING_DYNAMIC_NODES
762+ )
763+ ),
760764 )
761765 async def _safe_service_start () -> None :
762766 """In case of concurrent requests, this guarantees that only one service can be started at a time"""
You can’t perform that action at this time.
0 commit comments