You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My expectation is that node a/b will be run first, c will be run second, and then d will be run.
But the actual run is that a & d runs, and then b & c & d also runs separately. So the final node calls are a, b, d, c, d (note 2 runs of d). I can confirm this happens in both synchronous and asynchronous cases.
But when I try a graph like below, d is run only once, not twice.
Could someone help me understand this discrepancy?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
I have a graph that looks like
My expectation is that node a/b will be run first, c will be run second, and then d will be run.
But the actual run is that a & d runs, and then b & c & d also runs separately. So the final node calls are a, b, d, c, d (note 2 runs of d). I can confirm this happens in both synchronous and asynchronous cases.
But when I try a graph like below, d is run only once, not twice.

Could someone help me understand this discrepancy?
Beta Was this translation helpful? Give feedback.
All reactions