Hi everyone,
I’m encountering an issue with the Loop Over Items node in my workflow. After processing all items through a loop, the workflow execution stops completely instead of continuing to the next nodes.
My workflow structure:
- Data comes into Loop Over Items node (batch size: 500)
- Loop Over Items splits to:
- SG HTTP Request node for processing
- Aggregate node to collect results
- SG HTTP Request results feed back into the Loop Over Items node
Current node settings:
- Loop Over Items has
retryOnFail: true
alwaysOutputData
is set to true- Aggregate node is set to
aggregateAllItemData
Expected behavior: After processing all items, the workflow should continue to subsequent nodes (Convert to JSON and OneDrive upload nodes) Actual behavior: The workflow stops completely after the loop finishes processing all items
I’ve tried:
- Setting alwaysOutputData to true
- Verifying all connections are correct
- Checking for errors in execution logs
Is there something I’m missing in the configuration?