Retrying only in case of connectivity failure We have seen people exploiting until successful scope. People just put everything under until successful scope to retry and that is not the right way. We should retry only for a particular scenario we have been asked to retry for. e.g. when calling an API, if…
Read MoreUntil Successful The Until Successful scope processes the components within it until they succeed or exhaust the maximum number of retries. UntilSuccessful runs synchronously. If a component within the scope fails to connect or produce a successful result, Until Successful retries the failed task until all configured retries are exhausted. If a retry succeeds,…
Read More