When using 'with items' if one item fails, continue through list. One Error Continue
R
Raw Alpaca
Right now when looping through a list with items, if one of the items causes a failure the whole process stops, fails and exits out. I would want an 'on error continue' option so that the loop finishes and I can review the errored items and decide on the next action.
Log In
F
Few Echidna
Yes. This would be huge. Having to make a sub-workflow is a massive pain. Doing a retry loop is weird because it's starts processing the Items back at first element. It's not a big deal for JSONRPC APIs since one generic sub-workflow can get you far, but for REST APIs that have x number of endpoints having to build individual sub per workflow or a massive branching flow that handles all possible endpoints.
I
Imperial red Goldfish
You could achieve this with current functionality. You replace your current with items function with a sub workflow, pass your item through to the workflow and build your logic to succeed with a noop.
L
Loud Chameleon
Imperial red Goldfish Doesn't work if there's a system level failure like Jinja syntax