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 ec7e01e commit ed3f927Copy full SHA for ed3f927
core/src/test/java/dev/failsafe/functional/RateLimiterTest.java
@@ -94,7 +94,7 @@ public void testMaxWaitTimeExceeded() {
94
runAsync(() -> {
95
limiter.tryAcquirePermits(50, Duration.ofMinutes(1)); // limiter should now be well over its max permits
96
});
97
- Thread.sleep(100);
+ Thread.sleep(150);
98
}, Failsafe.with(limiter), ctx -> {
99
}, RateLimitExceededException.class);
100
}
0 commit comments