Skip to content

Commit 8ad6626

Browse files
committed
Increase future wait timeout in tests
Because couple tests take much more time with Netty buffer leak detector enabled with paranoid leak detection level.
1 parent 3f4cb71 commit 8ad6626

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

driver/src/test/java/org/neo4j/driver/v1/util/TestUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public static <T, U extends Future<T>> T await( U future )
7272
{
7373
try
7474
{
75-
return future.get( 1, MINUTES );
75+
return future.get( 5, MINUTES );
7676
}
7777
catch ( InterruptedException e )
7878
{

0 commit comments

Comments
 (0)