Loop Over Time not completing all the iterations and stops mid-way without error

Instead of it running the 5th Iteration it stops and shows that the worflow has completed, it shows no errors at all, I ran about 500 iterations before and they worked but sometimes it does this and doesnt even have any error so Im confused on why it does that

Describe the problem/error/question

What is the error message (if any)?

Please share your workflow

Share the output returned by the last node

It should run all the 10 Iterations its supposed to but it doesnt for some reason

Information on your n8n setup

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

Hi there, welcome @Labeeb_Ahmad to the community

first of all, there’s something wrong with how you are sharing your workflow i think, when i copy it, it only shows me 1 node of loop over items

but from my guess, on your loop, i think there’s a node where they dont have any output, and by default, if a node does not have any output, it will stop, and that is not exactly an error

what you can do is to identify which node it is, why is it empty, and if it is okay that it’s empty and you still want it to continue the loop, you can double click that node, go to settings and enable the Alway Output Data option

this way, even if the result of the node is empty, it will still run and the data will be something like

[
{
}
]

hope this helps, thank you!

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