@mikeholdorf You are totally right! That upper limit is set in
implementation step 4.d, where we set the Control - Until loop Count
limit to the maximum number of retries. Thanks for highlighting this!
Yes definitely useful. One thing, if the backend system is down for a
long time, this will just keep looping and running every minute. We have
done a similar approach, but have counter so we only loop x number of
times before we stop trying. Probably a good idea to have an upper limit
on the number ...
This is a useful approach when you need to implement a retry for HTTP
response codes that do not, by default, trigger an automatic retry in
the action (408, 429, 5xx). But it would be really good if the HTTP
action allowed you to configure additional HTTP response codes that
trigger a retry. Then th...
Latest Comments