You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by kl...@apache.org on 2018/08/22 23:22:11 UTC

[geode] 02/02: GEODE-5547: increase Await timeout

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

klund pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git

commit 6c2bc150be9819068441921425f58acbf8166453
Author: Kirk Lund <kl...@apache.org>
AuthorDate: Tue Aug 21 13:43:20 2018 -0700

    GEODE-5547: increase Await timeout
    
    This should also hopefully fix any new occurrences of GEODE-3335.
---
 .../java/org/apache/geode/management/RegionManagementDUnitTest.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/geode-core/src/distributedTest/java/org/apache/geode/management/RegionManagementDUnitTest.java b/geode-core/src/distributedTest/java/org/apache/geode/management/RegionManagementDUnitTest.java
index 2f02bff..c12052a 100644
--- a/geode-core/src/distributedTest/java/org/apache/geode/management/RegionManagementDUnitTest.java
+++ b/geode-core/src/distributedTest/java/org/apache/geode/management/RegionManagementDUnitTest.java
@@ -353,11 +353,11 @@ public class RegionManagementDUnitTest implements Serializable {
   }
 
   private ConditionFactory await() {
-    return Awaitility.await().atMost(2, MINUTES);
+    return await(null);
   }
 
   private ConditionFactory await(final String alias) {
-    return Awaitility.await(alias).atMost(2, MINUTES);
+    return Awaitility.await(alias).atMost(5, MINUTES);
   }
 
   private InternalCache getCache() {