fresh-wall-61998
08/16/2023, 6:27 PMresume command for resuming flows from an intermediate step. Is there a way to force re-run of a step in the flow even if it was successful in the original run that I'm resuming?
My use case is that I want to re-run the last few steps (with modified code) in a flow without having to run the full flow againancient-application-36103
08/16/2023, 6:28 PMpython flow.py resume <step-name>ancient-application-36103
08/16/2023, 6:29 PMpython flow.py resume --origin-run-id <run-id>ancient-application-36103
08/16/2023, 6:29 PMfresh-wall-61998
08/16/2023, 6:30 PMResuming uses the flow and step names to decide what results can be reused. This means that the results of previously successful steps will get reused even if you change their step code. You can add new steps and alter code of failed steps safely with resumeancient-application-36103
08/16/2023, 6:34 PMfresh-wall-61998
08/16/2023, 7:01 PMancient-application-36103
08/16/2023, 7:42 PMfresh-wall-61998
08/16/2023, 8:20 PMParameters with the resume command - I tried to specify flow params in the cli but it doesn't recognize the option and fails. Any workaround to this?ancient-application-36103
08/16/2023, 8:45 PM