There was an error while loading. Please reload this page.
1 parent 61201db commit 2137ec7Copy full SHA for 2137ec7
spring-context/src/test/java/org/springframework/resilience/ReactiveRetryInterceptorTests.java
@@ -464,11 +464,11 @@ public Mono<Object> retryOperationWithTimeoutNotExceededAndRetriesExhausted() {
464
});
465
}
466
467
-@Retryable(timeout = 5, delay = 10)
+@Retryable(timeout = 5, delay = 0)
468
public Mono<Object> retryOperationWithTimeoutExceededAfterInitialFailure() {
469
return Mono.fromCallable(() -> {
470
counter.incrementAndGet();
471
-Thread.sleep(10);
+Thread.sleep(20);
472
throw new IOException(counter.toString());
473
474
0 commit comments