when running resume with python flow.py resume {step_name}, user may want to rerun the "step" and continue with the execution. In current code, we will blindly copy everything as long as the step was successful.
The proposed change will look at step in topological order and skip cloning the ones on and after the specified steps (and then rerun everything if possible).
when running resume with
python flow.py resume {step_name}
, user may want to rerun the "step" and continue with the execution. In current code, we will blindly copy everything as long as the step was successful.The proposed change will look at step in topological order and skip cloning the ones on and after the specified steps (and then rerun everything if possible).