You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We use the with-items to loop over and run an action.
If it fails for even one of them, it retries over all the items in the array again, instead of just retrying the failed ones.
For instance, if param1 was set to 1,2,3,4 in the below sample workflow:
In current implementation, the retry is scoped to the task so it retry the task and not the items in the case of with items. We can add an option in the retry spec to retry only failed items.
We use the with-items to loop over and run an action.
If it fails for even one of them, it retries over all the items in the array again, instead of just retrying the failed ones.
For instance, if
param1
was set to1,2,3,4
in the below sample workflow:And here is the output of the run.
The text was updated successfully, but these errors were encountered: