How do I conditionally disable a nested dataflow from running? #32
-
I was thinking of piping one output of a branch into a dependency waiter, but I'm confused on the branch module how I need to set the "then" and "else" outputs. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
What you want to do, is put anything you want to only execute when the condition is true downstream of the |
Beta Was this translation helpful? Give feedback.
-
Wow, I had this same question. Thanks David. |
Beta Was this translation helpful? Give feedback.
What you want to do, is put anything you want to only execute when the condition is true downstream of the
then
output. Vice versa forelse
. The other output will not be set, so those modules won't execute. Check out these examples below. You may not even need a dependency waiter.