Hi,
I have a simple workflow iterating over an array of URLs and querying them via core.http by using with.
Query_URLs:
with:
items: <% ctx().url_list %>
action: core.http
input:
url: <% item() %>
method: "PUT"
body: ...
Now I have the case that one called URL returns 404 error and therefore this action fails, but also interrupts all other queries and the whole workflow fails.
How can I configure it to continue even if one iteration fails?
Thanks.