BrianB
BuildShip11mo ago
6 replies
Brian

Output node within parallel node

What is the expected behaviour if we set an "Output" node within a "parallel" node? I just tested this quickly and it would run the first parallel log, though it would not continue on/after the "sleep" node.
Is it just a coincidence that the first log node was executed because it was "fast enough" to execute before the workflow could return?
Screenshot_2025-02-24_at_16.46.11.png
Solution
Hey @Brian it will execute all the nodes in parallel even if it includes a output node node, but an important item to note here is, that it will follow the precedence and will only return the value from the sequence which will have a output node first.


Although it is not a correct approach to add a return inside a parallel node. Hope this helps.
image.png
Was this page helpful?