Dakota McCarty
08/17/2021, 1:15 AMKevin Kho
flow.run()
. Is that right? The UI will only keep track of flows that the Prefect scheduler triggered. flow.run()
is intended for local testing and that flow is not registered with Prefect Cloud.
If you want to keep the notebook setup, you need to use flow.register()
and then create_flow_run()
Dakota McCarty
08/17/2021, 1:47 AMKevin Kho
Kevin Kho
Dakota McCarty
08/17/2021, 2:14 AMDakota McCarty
08/17/2021, 6:23 AMAlexander Seifert
08/17/2021, 8:48 AMDakota McCarty
08/17/2021, 10:28 AMKevin Kho
Kevin Kho
client.create_flow_run(flow_id, labels='deepnote')
your labels might need to be a list of strings because this might chop it up per letter since the string is an iterable