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 83c5779 commit be150abCopy full SHA for be150ab
jdbc-v2/src/test/java/com/clickhouse/jdbc/ConnectionTest.java
@@ -651,7 +651,7 @@ public void testNetworkTimeout() throws Exception {
651
executorService.shutdown();
652
executorService.awaitTermination(20, TimeUnit.SECONDS);
653
Assert.assertTrue(conn.isClosed());
654
- Assert.assertFalse(conn.isValid(1000));
+ Assert.assertFalse(conn.isValid(5000));
655
conn.close();
656
657
}
@@ -671,7 +671,7 @@ public void testNetworkTimeout() throws Exception {
671
fail("Exception expected");
672
} catch (Exception e) {
673
Assert.assertFalse(conn.isClosed());
674
- Assert.assertTrue(conn.isValid(1000));
+ Assert.assertTrue(conn.isValid(5000));
675
676
677
0 commit comments