Why doesnt my bottom Node execute?

Hello, does anyone know why this doesnt work? If i remove the top path the bottom one executes properly, but if both are connected the bottom one stops before AI Node 2. I dont get why this happens. Ive already tried putting a switch directy after AI Node 1 but it still stops before AI Node 2.

Im really thankful for any answer or tip or anything. Thank yall in advance

1 Like

so the top path executes without a problem, but the bottom one stops directly on node after AI Node 1.

1 Like

Hey @Lxktz Welcome to the n8n community!

When you output 2 branches in one single node, then the top branch must execute completely with all the nodes in the top branch and once that is done successfully only then the nodes on the bottom branch will start executing, and this is because nodes in both the branches connected to one single node cannot be executed simultaneously as that will create conflict in the final output. Let me know if this helps!

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.