Skip to content

Commit b02eb1f

Browse files
authored
[churn] Attempt to fix flaky JedisPubSubBaseTest (#4346)
attempt to fix flaky JedisPubSubBaseTest Error: redis.clients.jedis.JedisPubSubBaseTest.testProceed_givenThreadInterrupt_exitLoop -- Time elapsed: 0.030 s <<< FAILURE! org.opentest4j.AssertionFailedError: expected: <true> but was: <false>
1 parent 0bcac5c commit b02eb1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/redis/clients/jedis/JedisPubSubBaseTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,6 @@ protected String encode(byte[] raw) {
5555
});
5656
thread.start();
5757

58-
assertTrue(countDownLatch.await(10, TimeUnit.MILLISECONDS));
58+
assertTrue(countDownLatch.await(30, TimeUnit.MILLISECONDS));
5959
}
6060
}

0 commit comments

Comments
 (0)