Random jump back after final node is processed

Hello,

I am facing issue (strange behavior) of my flow. After executing the very last node of the flow (in my case it is “wait” node) it randomly (sometimes) jumps back into another “wait” node (not to any other, it is only this one). Does anyone have a clue, why is this happening? If I delete the last node, it behaves still the same.
Retry on fail is not checked.


)

Information on your n8n setup

  • 1.77.3
  • SQLite
  • own
  • npm
  • Linux

It looks like your topic is missing some important information. Could you provide the following if applicable.

  • n8n version:
  • Database (default: SQLite):
  • n8n EXECUTIONS_PROCESS setting (default: own, main):
  • Running n8n via (Docker, npm, n8n cloud, desktop app):
  • Operating system:

That is probably because you have data coming out of both path: true and false in your IF node.

n8n will execute first the top path and then the bottom path.

So when the path from the top finishes executing, it checks for data in the bottom path.

Since you probably have data going to the FALSE path too, it runs.

If my reply answers your question, please remember to mark it as a solution.

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