Repository: incubator-geode
Updated Branches:
  refs/heads/feature/GEODE-2026 d4262fb50 -> 63fbba323


changed wait from 30 to 60
removed InterruptedException


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

Branch: refs/heads/feature/GEODE-2026
Commit: 71ee977d1388ec9cf6176d3df9e40e98f013b084
Parents: d4262fb
Author: Darrel Schneider <[email protected]>
Authored: Mon Oct 24 16:32:13 2016 -0700
Committer: Darrel Schneider <[email protected]>
Committed: Mon Oct 24 16:32:13 2016 -0700

----------------------------------------------------------------------
 .../cache/partitioned/PersistentPartitionedRegionDUnitTest.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/71ee977d/geode-core/src/test/java/org/apache/geode/internal/cache/partitioned/PersistentPartitionedRegionDUnitTest.java
----------------------------------------------------------------------
diff --git 
a/geode-core/src/test/java/org/apache/geode/internal/cache/partitioned/PersistentPartitionedRegionDUnitTest.java
 
b/geode-core/src/test/java/org/apache/geode/internal/cache/partitioned/PersistentPartitionedRegionDUnitTest.java
index c4358fc..633366d 100644
--- 
a/geode-core/src/test/java/org/apache/geode/internal/cache/partitioned/PersistentPartitionedRegionDUnitTest.java
+++ 
b/geode-core/src/test/java/org/apache/geode/internal/cache/partitioned/PersistentPartitionedRegionDUnitTest.java
@@ -1629,12 +1629,12 @@ public class PersistentPartitionedRegionDUnitTest 
extends PersistentPartitionedR
     AsyncInvocation asyncCreate = vm0.invokeAsync(createData);
 
     SerializableCallable waitForIntValue = new SerializableCallable() {
-      public Object call() throws InterruptedException {
+      public Object call() {
         Cache cache = getCache();
         Region region = cache.getRegion(PR_REGION_NAME);
         // The value is initialized as a String so wait
         // for it to be changed to an Integer.
-        await().atMost(30, SECONDS).until(() -> {
+        await().atMost(60, SECONDS).until(() -> {
           return region.get(0) instanceof Integer;
         });
         return region.get(0);

Reply via email to