Skip to content

Commit

Permalink
Extend timeout for Java 9. Will investigate why it is
Browse files Browse the repository at this point in the history
necessary on travis-ci later.
  • Loading branch information
brettwooldridge committed Apr 19, 2017
1 parent 04f6d4a commit e62e85c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public void testRaceCondition() throws Exception
config.setMinimumIdle(0);
config.setMaximumPoolSize(10);
config.setInitializationFailTimeout(Long.MAX_VALUE);
config.setConnectionTimeout(2500);
config.setConnectionTimeout(5000);
config.setDataSourceClassName("com.zaxxer.hikari.mocks.StubDataSource");

setSlf4jLogLevel(ConcurrentBag.class, Level.INFO);
Expand Down

0 comments on commit e62e85c

Please sign in to comment.