GEODE-501. test no-ack region thus we need to wait before validating the results.
Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/6116054b Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/6116054b Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/6116054b Branch: refs/heads/develop Commit: 6116054bb4b9e15ad91171ca748abb29bc3a0e05 Parents: 6d618bf Author: Hitesh Khamesra <[email protected]> Authored: Wed Oct 28 09:33:24 2015 -0700 Committer: Hitesh Khamesra <[email protected]> Committed: Wed Oct 28 09:35:31 2015 -0700 ---------------------------------------------------------------------- .../gemfire/cache30/DistributedNoAckRegionCCEDUnitTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/6116054b/gemfire-core/src/test/java/com/gemstone/gemfire/cache30/DistributedNoAckRegionCCEDUnitTest.java ---------------------------------------------------------------------- diff --git a/gemfire-core/src/test/java/com/gemstone/gemfire/cache30/DistributedNoAckRegionCCEDUnitTest.java b/gemfire-core/src/test/java/com/gemstone/gemfire/cache30/DistributedNoAckRegionCCEDUnitTest.java index 98b8d11..7a55635 100644 --- a/gemfire-core/src/test/java/com/gemstone/gemfire/cache30/DistributedNoAckRegionCCEDUnitTest.java +++ b/gemfire-core/src/test/java/com/gemstone/gemfire/cache30/DistributedNoAckRegionCCEDUnitTest.java @@ -140,7 +140,7 @@ public class DistributedNoAckRegionCCEDUnitTest extends // if (a0failed && a1failed) { // fail("neither member saw event conflation - check stats for " + name); // } - + pause(2000);//this test has with noack, thus we should wait before validating entries // check consistency of the regions Map r0Contents = (Map)vm0.invoke(this.getClass(), "getCCRegionContents"); Map r1Contents = (Map)vm1.invoke(this.getClass(), "getCCRegionContents");
