File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
services/dynamic-scheduler/src/simcore_service_dynamic_scheduler/services/generic_scheduler Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -30,8 +30,7 @@ async def restart_create_operation_step_in_manual_intervention(
3030) -> None :
3131 """
3232 restarts a step waiting for manual intervention
33- NOTE: to be used only with steps with wait_for_manual_intervention=True
34- and only to restart the `create`
33+ NOTE: to be used only with steps where `wait_for_manual_intervention()` is True
3534 """
3635 await get_core (app ).restart_operation_step_in_error (
3736 schedule_id , step_name , in_manual_intervention = True
Original file line number Diff line number Diff line change @@ -352,7 +352,7 @@ def get_step(
352352 registerd_operations = list (cls ._OPERATIONS .keys ()),
353353 )
354354
355- steps_names = list (cls ._OPERATIONS [operation_name ]["steps" ].keys ())
355+ steps_names = set (cls ._OPERATIONS [operation_name ]["steps" ].keys ())
356356 if step_name not in steps_names :
357357 raise StepNotFoundInoperationError (
358358 step_name = step_name ,
You can’t perform that action at this time.
0 commit comments