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
{{ message }}
This repository has been archived by the owner on Jun 21, 2023. It is now read-only.
Currently retry4j only supports retrying on a set of exception types or values being returned from the callable logic. There also needs to be a way to retry on other conditions such as if a exception is returned with a certain value inside of it... for example:
HttpClientErrorException is thrown by apache HttpClient, you may want to retry only when ex.getRawStatusCode returned a 5XX error code and not a 4XX error code from
The text was updated successfully, but these errors were encountered:
Currently retry4j only supports retrying on a set of exception types or values being returned from the callable logic. There also needs to be a way to retry on other conditions such as if a exception is returned with a certain value inside of it... for example:
HttpClientErrorException
is thrown by apache HttpClient, you may want to retry only whenex.getRawStatusCode
returned a 5XX error code and not a 4XX error code fromThe text was updated successfully, but these errors were encountered: