Thanks to visit codestin.com Credit goes to github.com
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 66b0681 commit 3455d5aCopy full SHA for 3455d5a
core/src/test/java/dev/failsafe/functional/BulkheadTest.java
@@ -52,7 +52,7 @@ public void testPermitAcquiredAfterWait() {
52
}
53
54
public void testPermitAcquiredAfterWaitWithLargeQueue(){
55
- Bulkhead<Object> bulkhead = Bulkhead.builder(1).withMaxWaitTime(Duration.ofSeconds(15)).build();
+ Bulkhead<Object> bulkhead = Bulkhead.builder(1).withMaxWaitTime(Duration.ofSeconds(1)).build();
56
FailsafeExecutor<Object> exec = Failsafe.with(bulkhead);
57
CompletableFuture<Void>[] tasks = new CompletableFuture[10];
58
for(int i = 0; i < tasks.length; i++){
0 commit comments