Andreas
07/06/2022, 10:38 AMprefect.client.create_flow_run_from_deployment() is it possible to set the name for the flow_run? I know that there is such an option when calling create_flow_run(name="My flow run name") that takes as input a flow_model, what about when creating a run from a deployment though?Anna Geller
Marvin
07/06/2022, 11:02 AMAndreas
07/06/2022, 11:27 AMprefect.client.create_flow_run_from_deployment() uses DeploymentFlowRunCreate which is a subclass of FlowRun that has the 'name' attribute, so indeed exposing this functionality is possible.
Thank you Anna😊