Timo Vink
01/26/2023, 10:10 PMpersist_result=True
programmatically in Prefect 2? e.g. initialize a local flow run with persisted state/results from some remote flow run?
Usecase: Flow fails in remote environment a few hours into a run. It'd be nice if a developer could run that flow locally in their debugger, but initialize the flow using the persisted results from the remote run to skip straight to the tasks that failed.Zanie
01/26/2023, 10:24 PMpython -m prefect.engine <flow-run-id>
and it would load the existing task states and results instead of starting them againTimo Vink
01/26/2023, 10:30 PM