We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
RetryState.isLastAttempt
1 parent 8b1804d commit 446312cCopy full SHA for 446312c
1 file changed
driver-core/src/main/com/mongodb/internal/async/function/RetryState.java
@@ -360,7 +360,6 @@ public boolean isFirstAttempt() {
360
private boolean isLastAttempt(final Throwable attemptException) {
361
boolean lastIteration = loopState.isLastIteration();
362
boolean operationTimeout = retryUntilTimeoutThrowsException && attemptException instanceof MongoOperationTimeoutException;
363
- assertFalse(lastIteration && operationTimeout);
364
return lastIteration || operationTimeout || attempt() == attempts - 1;
365
}
366
0 commit comments