How do I conditionally disable a nested dataflow from running? #32
Answered
by
d-spitz
mickeyclaffey
asked this question in
DataFlows & Modules
|
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. |
Answered by
d-spitz
Mar 4, 2025
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 |
1 reply
Answer selected by
mickeyclaffey
|
Wow, I had this same question. Thanks David. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


What you want to do, is put anything you want to only execute when the condition is true downstream of the
thenoutput. 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.