hi all! I'm trying to use `create_flow_run.map(......
# ask-community
s
hi all! I'm trying to use
create_flow_run.map(...)
to run a single flow multiple times with different parameters. I have that working, but unfortunately I need the created flows to run in a specific order. is there a way to force that behavior?
k
Hey @Steve s, not with map unfortunately. Is your list pre-defined? You can make a for-loop if it is
s
i was hoping to specify the list flexibly as the output of an upstream task. i'll give the static for-loop approach a shot. thanks so much for the quick reply