You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by la...@apache.org on 2018/01/04 01:56:40 UTC

[geode] branch feature/GEODE-4165 created (now 83bafb9)

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

ladyvader pushed a change to branch feature/GEODE-4165
in repository https://gitbox.apache.org/repos/asf/geode.git.


      at 83bafb9  GEODE-4165: Listener EventId in server does not match that of the client for clearRegion

This branch includes the following new commits:

     new 83bafb9  GEODE-4165: Listener EventId in server does not match that of the client for clearRegion

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


-- 
To stop receiving notification emails like this one, please contact
['"commits@geode.apache.org" <co...@geode.apache.org>'].

[geode] 01/01: GEODE-4165: Listener EventId in server does not match that of the client for clearRegion

Posted by la...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 83bafb94494e0aa7311051cafdd5fd8605a6c504
Author: Lynn Hughes-Godfrey <lh...@pivotal.io>
AuthorDate: Wed Jan 3 17:55:42 2018 -0800

    GEODE-4165: Listener EventId in server does not match that of the client for clearRegion
    
    - Improved logging to display full EventId (including MembershipId) when mismatch detected
---
 .../internal/cache/tier/sockets/EventIDVerificationDUnitTest.java     | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/geode-core/src/test/java/org/apache/geode/internal/cache/tier/sockets/EventIDVerificationDUnitTest.java b/geode-core/src/test/java/org/apache/geode/internal/cache/tier/sockets/EventIDVerificationDUnitTest.java
index a7fed31..9fd57b7 100755
--- a/geode-core/src/test/java/org/apache/geode/internal/cache/tier/sockets/EventIDVerificationDUnitTest.java
+++ b/geode-core/src/test/java/org/apache/geode/internal/cache/tier/sockets/EventIDVerificationDUnitTest.java
@@ -319,6 +319,10 @@ public class EventIDVerificationDUnitTest extends JUnit4DistributedTestCase {
           gotCallback = true;
           // verifyEventIDsDuringRegionDestroy(event);
           testEventIDResult = ((RegionEventImpl) event).getEventId().equals(eventId);
+          if (!testEventIDResult) {
+            cache.getLogger().warning("Expected " + eventId.expensiveToString() + ", but processed"
+                + ((RegionEventImpl) event).getEventId().expensiveToString());
+          }
           EventIDVerificationDUnitTest.class.notify();
         }
       }

-- 
To stop receiving notification emails like this one, please contact
"commits@geode.apache.org" <co...@geode.apache.org>.