Hrm, so I'm running a big Flow of Flows - some of ...
# ask-community
m
Hrm, so I'm running a big Flow of Flows - some of them should be kicked off in parallel I think, but they're all running one at a time.
m
do you have
wait=True
set by any chance ?
m
@Marwan Sarieddine Oof, I do (I just copied and pasted from the Flow of Flows page in the docs)
m
Glad that explains things !
m
Thanks!
@Marwan Sarieddine There are some dependencies though - just that there's multiple Flows that are all dependent on a single one. If I take out
wait=True
, will they still wait for their dependency?
m
That single flow run which they depend on has to set wait=True - whereas the multiple flows you don’t need to wait on them if I understand correctly
m
Those flows also have dependencies, though.
(as in, flows that are downstream of them)
m
hmm - so you need to bundle them with their dependencies in a flow or flow-of-flows (whichever makes sense for your set up) and that single flow will trigger the separate flow-of-flows …
m
Interesting, thanks!
I'll give that a go!