Theo Sjöstedt
04/25/2023, 1:44 PMcertain-stingray
discreet-mole
etc 🙂
Ideally in runtime, since I want it to reflect the parameters that was sent in, so lets say that I have
@flow
def my_flow(
name: str,
some_number: int,
):
somehow_set_flow_run_name_to(f"{name}: {some_number}")
Something like that 🙂Pēteris Kļaviņš
04/25/2023, 1:58 PMMiguel Moncada
04/25/2023, 2:19 PM@flow
def my_flow(a: str):
...
my_flow.with_options(flow_run_name="name")(a="value")
Theo Sjöstedt
04/25/2023, 3:39 PMinstance
in this case become a parameter you can set when starting a flow run?Pēteris Kļaviņš
04/26/2023, 10:10 AMTheo Sjöstedt
04/26/2023, 10:25 AM