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
As stated in the Javadoc for RetryListener.onRetryPolicyExhaustion(), the supplied Throwable should be:
the last exception thrown by the Retryable operation
However, RetryTemplate.execute() currently supplies the final, composite RetryException to RetryListener.onRetryPolicyExhaustion(), whose cause happens to be the last exception thrown by the Retryable operation.