https://prefect.io logo
Title
j

James Zhang

01/12/2023, 10:03 AM
Hi all, just wondering if there’s an easy way to define flow run name in code as default instead of just having the random generated names? and not using
run_deployment(flow_run_name="xxx")
because I want to start the flow run on the UI…
j

Jean Luciano

01/12/2023, 3:54 PM
Not possible as far as I’m aware, flow run name gets generated on run start.
j

James Zhang

01/12/2023, 3:58 PM
i could imagine to have something like
Deployment.build_from_flow(flow_name_prefix='abc')
when deploying the Flow