You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by bs...@apache.org on 2018/08/27 18:29:39 UTC

[geode] 02/04: GEODE-5596 Client ends up with destroyed entry after invalidate()

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

bschuchardt pushed a commit to branch feature/GEODE-5596
in repository https://gitbox.apache.org/repos/asf/geode.git

commit a1135349e6cd1f934399346481ff62de806f33b3
Author: Bruce Schuchardt <bs...@pivotal.io>
AuthorDate: Fri Aug 17 13:54:34 2018 -0700

    GEODE-5596 Client ends up with destroyed entry after invalidate()
    
    Undoing a couple of unnecessary test changes.
---
 .../java/org/apache/geode/cache30/ClientServerCCEDUnitTest.java      | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/geode-core/src/distributedTest/java/org/apache/geode/cache30/ClientServerCCEDUnitTest.java b/geode-core/src/distributedTest/java/org/apache/geode/cache30/ClientServerCCEDUnitTest.java
index f9fc941..08a7edb 100644
--- a/geode-core/src/distributedTest/java/org/apache/geode/cache30/ClientServerCCEDUnitTest.java
+++ b/geode-core/src/distributedTest/java/org/apache/geode/cache30/ClientServerCCEDUnitTest.java
@@ -675,9 +675,7 @@ public class ClientServerCCEDUnitTest extends JUnit4CacheTestCase {
   private void unregisterInterest(VM vm) {
     vm.invoke(new SerializableRunnable("unregister interest in all keys") {
       public void run() {
-        // TestRegion.dumpBackingMap();
         TestRegion.unregisterInterestRegex(".*");
-        // TestRegion.dumpBackingMap();
       }
     });
   }
@@ -886,8 +884,7 @@ public class ClientServerCCEDUnitTest extends JUnit4CacheTestCase {
         for (int i = 0; i < 10; i++) {
           TestRegion.invalidate("Object" + i, Integer.valueOf(i));
         }
-        TestRegion.dumpBackingMap();
-        // assertEquals(10, TestRegion.size());
+        assertEquals(10, TestRegion.size());
         return null;
       }
     });