Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
tests shutdown
  • Loading branch information
rashtao committed Jan 17, 2022
commit 6d558cc1da43fc474e5e4197e6ac8a4f3560009f
1 change: 1 addition & 0 deletions src/test/java/com/arangodb/ConcurrencyTests.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ public void concurrentPendingRequests() throws ExecutionException, InterruptedEx
for (CompletableFuture<Void> f : futures) {
f.get();
}
adb.shutdown();
}

}
1 change: 1 addition & 0 deletions src/test/java/com/arangodb/async/ConcurrencyTests.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ public void concurrentPendingRequests() throws ExecutionException, InterruptedEx
for (CompletableFuture<ArangoCursorAsync<Void>> req : reqs) {
req.get();
}
adb.shutdown();
}

}