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 a4b2053 commit e9b0036Copy full SHA for e9b0036
src/test/java/redis/clients/jedis/ACLJedisPoolTest.java
@@ -276,7 +276,7 @@ public void testCloseConnectionOnMakeObject() {
276
int currentClientCount = getClientCount(jedis.clientList());
277
assertThrows(JedisAccessControlException.class, pool::getResource);
278
// wait for the redis server to close the connection
279
- await().pollDelay(Duration.ofMillis(10)).atMost(50, MILLISECONDS)
+ await().pollDelay(Duration.ofMillis(10)).atMost(500, MILLISECONDS)
280
.until(() -> getClientCount(jedis.clientList()) == currentClientCount);
281
assertEquals(currentClientCount, getClientCount(jedis.clientList()));
282
}
0 commit comments