Zanie
04/07/2021, 3:10 PMStartFlowRun
Task at https://github.com/PrefectHQ/prefect/pull/4245 and have some minor concerns about it being a breaking change. I expect that nobody was using the return value because it was undocumented but I'm curious if anyone here was? Let me know what you think!Brett Naul
04/07/2021, 3:29 PMtry:
StartFlowRun(...)
except prefect.engine.signals.PrefectStateSignal as signal:
# Parse out flow run from signal `STATE("...finished in state ..."`)
# (see StartFlowRun.run)
flow_run_id, *_ = signal.args[0].split()