File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
services/dynamic-scheduler/src/simcore_service_dynamic_scheduler/services/director_v2 Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ async def stop_dynamic_service(
8080 node_id : NodeID ,
8181 simcore_user_agent : str ,
8282 save_state : bool ,
83- timeout : datetime .timedelta # noqa: ASYNC109
83+ timeout : datetime .timedelta , # noqa: ASYNC109
8484 ) -> None :
8585 try :
8686 await self .thin_client .delete_dynamic_service (
@@ -95,7 +95,8 @@ async def stop_dynamic_service(
9595 == status .HTTP_409_CONFLICT
9696 ):
9797 raise ServiceWaitingForManualInterventionError (
98- node_id = node_id
98+ node_id = node_id ,
99+ unexpected_status_error = f"{ e } " ,
99100 ) from None
100101 if (
101102 e .response .status_code # type: ignore[attr-defined] # pylint:disable=no-member
@@ -110,7 +111,7 @@ async def retrieve_inputs(
110111 * ,
111112 node_id : NodeID ,
112113 port_keys : list [ServicePortKey ],
113- timeout : datetime .timedelta # noqa: ASYNC109
114+ timeout : datetime .timedelta , # noqa: ASYNC109
114115 ) -> RetrieveDataOutEnveloped :
115116 response = await self .thin_client .dynamic_service_retrieve (
116117 node_id = node_id , port_keys = port_keys , timeout = timeout
You can’t perform that action at this time.
0 commit comments