We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0ccd99 commit 5079fe6Copy full SHA for 5079fe6
src/main/java/com/rabbitmq/client/impl/recovery/DefaultRetryHandler.java
@@ -100,7 +100,7 @@ protected <T extends RecordedEntity> RetryResult doRetry(RetryCondition<T> condi
100
Exception exception = context.exception();
101
while (attempts < retryAttempts) {
102
if (condition.test(entity, exception)) {
103
- log(entity, context.exception(), attempts);
+ log(entity, exception, attempts);
104
backoffPolicy.backoff(attempts + 1);
105
try {
106
Object result = operation.call(context);
0 commit comments