You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by ds...@apache.org on 2016/09/20 18:34:08 UTC

incubator-geode git commit: GEODE-1860: change unit test to wait longer

Repository: incubator-geode
Updated Branches:
  refs/heads/develop 61c6ae037 -> 06436dba0


GEODE-1860: change unit test to wait longer


Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/06436dba
Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/06436dba
Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/06436dba

Branch: refs/heads/develop
Commit: 06436dba03b38c281a159a239fb84bd0c956ee81
Parents: 61c6ae0
Author: Darrel Schneider <ds...@pivotal.io>
Authored: Tue Sep 20 11:25:04 2016 -0700
Committer: Darrel Schneider <ds...@pivotal.io>
Committed: Tue Sep 20 11:25:04 2016 -0700

----------------------------------------------------------------------
 .../cache/ConcurrentRegionOperationsJUnitTest.java        | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/06436dba/geode-core/src/test/java/org/apache/geode/internal/cache/ConcurrentRegionOperationsJUnitTest.java
----------------------------------------------------------------------
diff --git a/geode-core/src/test/java/org/apache/geode/internal/cache/ConcurrentRegionOperationsJUnitTest.java b/geode-core/src/test/java/org/apache/geode/internal/cache/ConcurrentRegionOperationsJUnitTest.java
index 6c72011..8ead0a3 100755
--- a/geode-core/src/test/java/org/apache/geode/internal/cache/ConcurrentRegionOperationsJUnitTest.java
+++ b/geode-core/src/test/java/org/apache/geode/internal/cache/ConcurrentRegionOperationsJUnitTest.java
@@ -521,19 +521,19 @@ public class ConcurrentRegionOperationsJUnitTest extends DiskRegionTestingBase {
       this.timeToStop.set(true);
     }
     for (int i = 0; i < numberOfPutsThreads; i++) {
-      ThreadUtils.join(putThreads[i], 10*1000);
+      ThreadUtils.join(putThreads[i], 60*1000);
     }
     for (int i = 0; i < numberOfGetsThreads; i++) {
-      ThreadUtils.join(getThreads[i], 10*1000);
+      ThreadUtils.join(getThreads[i], 60*1000);
     }
     for (int i = 0; i < numberOfDestroysThreads; i++) {
-      ThreadUtils.join(destroyThreads[i], 10*1000);
+      ThreadUtils.join(destroyThreads[i], 60*1000);
     }
     for (int i = 0; i < numberOfClearThreads; i++) {
-      ThreadUtils.join(clearThreads[i], 10*1000);
+      ThreadUtils.join(clearThreads[i], 60*1000);
     }
     for (int i = 0; i < numberOfForceRollThreads; i++) {
-      ThreadUtils.join(forceRollThreads[i], 10*1000);
+      ThreadUtils.join(forceRollThreads[i], 60*1000);
     }
 
     if (this.validate) {