Darin Douglass
05/18/2022, 6:56 PMcreate_flow_run
not base the new flow’s name off of the current flow without passing run_name
?run_name
for me, but if i pass any empty value, create_flow_run
will override it with it’s {current}-{flow.name}
valuefoo-bar
• foo-bar-flowname
• foo-bar-flowname-flowname
• foo-bar-flowname-flowname-flowname
etcflow_run_name
from the context, but that feels a bit hacky/dangerous?Kevin Kho
RenameFlowRun
task inside the subflow and flow-date
or something like that?Darin Douglass
05/18/2022, 7:12 PMrun_name=None
to mean “backend make it for me please”Kevin Kho
Marvin
05/18/2022, 7:16 PMDarin Douglass
05/18/2022, 7:17 PMprefect.context["flow_run_name"] = None
does workKevin Kho