Scott Vermillion
07/11/2021, 10:15 PMfrom prefect import Client
client = Client()
client.create_flow_run(flow_id="<some flow_id>")
But lo and behold, someone comes along an re-registers the flow with Cloud. The previous flow_id gets archived and a new one is generated.
Now I have to go and update my Python app with the new flow_id? Can this be done by name or something? Or can I pull the flow_id as a variable? Or?
Thank you.Kevin Kho
StartFlowRun(…).run()
to run it.Scott Vermillion
07/11/2021, 10:24 PMScott Vermillion
07/12/2021, 4:44 PMKevin Kho
prefect auth login
.Scott Vermillion
07/12/2021, 5:27 PM