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 13:34:12 UTC

[geode] branch WIP-GEODE-9892 updated: experimentally reduce stress

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 0844500  experimentally reduce stress
0844500 is described below

commit 0844500572d684e304ab07bf9187fcf04d2955ba
Author: Ray Ingles <ri...@vmware.com>
AuthorDate: Mon Feb 14 08:32:42 2022 -0500

    experimentally reduce stress
---
 .../geode/redis/internal/commands/executor/list/LPushDUnitTest.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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 557aa52..b77558b 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
@@ -102,9 +102,9 @@ public class LPushDUnitTest {
       futureList.add(executor.runAsync(task));
     }
 
-    for (int i = 0; i < 100 && runningCount.get() > 0; i++) {
+    for (int i = 0; i < 50 && runningCount.get() > 0; i++) {
       clusterStartUp.moveBucketForKey(listHashtags.get(i % listHashtags.size()));
-      GeodeAwaitility.await().during(Duration.ofMillis(200)).until(() -> true);
+      GeodeAwaitility.await().during(Duration.ofMillis(500)).until(() -> true);
     }
 
     for (Future future : futureList) {