Bug in Loop over Item

Hello together,

I don’t understand how the Loop Over Item node works.

It iterate a few Items and jump then out to do the done thread and jump back to the loop thread.

EDIT:

How it works with the Wait node:

First I donwolad the Signature Files after this five doiwnlaods it jumps out and go to the wait node afterthat it jump back and download the “Get File” node.

the 3rd Item in the loop is the only the one that has a Signature and other File to download.

At the 3rd run it download only the signature file and not the other files.

Share the output returned by the last node

Information on your n8n setup

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

Based on your workflow looks like you are getting signature and getting file in parallel which means an asynchronous behavior causing the loop to start iterating before the previous download is actually complete. Either you do it sequentially or combine the two into one single node function.

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