For Loops hangs if any iterations fail
- it fetches rss articles
- processes articles in a for loop
- fetches article content
- summarizes the article
- collects articles and summary in a single object from a for loop
The
fetches article content step might fail sometime and in a script I don't have any error handling; my intuition was that the for loop should skip the failures and the resulting collection simply won't contain them (as I have skip failures enabled in a for loop) Instead of this I'm seeing the flow hanging and not proceeding because of the failures.
Should I add error handling to the script to avoid that or is there a better way to tell the for loop to ignore the failures?