You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by ri...@apache.org on 2022/02/14 03:14:57 UTC

[geode] branch WIP-GEODE-9892 updated: Give cluster more time to init

This is an automated email from the ASF dual-hosted git repository.

ringles pushed a commit to branch WIP-GEODE-9892
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/WIP-GEODE-9892 by this push:
     new 45c688e  Give cluster more time to init
45c688e is described below

commit 45c688e9aee99468a1a5c47cd28581c643a3f015
Author: Ray Ingles <ri...@vmware.com>
AuthorDate: Sun Feb 13 22:12:41 2022 -0500

    Give cluster more time to init
---
 .../geode/redis/internal/commands/executor/list/LPushDUnitTest.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/geode-for-redis/src/distributedTest/java/org/apache/geode/redis/internal/commands/executor/list/LPushDUnitTest.java b/geode-for-redis/src/distributedTest/java/org/apache/geode/redis/internal/commands/executor/list/LPushDUnitTest.java
index beb925b..9b32860 100644
--- a/geode-for-redis/src/distributedTest/java/org/apache/geode/redis/internal/commands/executor/list/LPushDUnitTest.java
+++ b/geode-for-redis/src/distributedTest/java/org/apache/geode/redis/internal/commands/executor/list/LPushDUnitTest.java
@@ -66,7 +66,7 @@ public class LPushDUnitTest {
     clusterStartUp.startRedisVM(1, locator.getPort());
     int redisServerPort = clusterStartUp.getRedisPort(1);
     jedis = new JedisCluster(new HostAndPort(BIND_ADDRESS, redisServerPort), REDIS_CLIENT_TIMEOUT);
-    GeodeAwaitility.await().during(Duration.ofMillis(200)).until(() -> true);
+    GeodeAwaitility.await().during(Duration.ofMillis(500)).until(() -> true);
     clusterStartUp.flushAll();
   }