agingade commented on a change in pull request #4987: URL: https://github.com/apache/geode/pull/4987#discussion_r425409860
########## File path: geode-core/src/distributedTest/java/org/apache/geode/cache/ReplicateCacheListenerDistributedTest.java ########## @@ -283,7 +325,12 @@ public void afterInvalidate(final EntryEvent<String, Integer> event) { @Override public void afterCreate(final EntryEvent<String, Integer> event) { - // ignore + sharedCountersRule.increment(CREATES); Review comment: This is to override the unsupported exception in base cache listener. ########## File path: geode-core/src/distributedTest/java/org/apache/geode/cache/ReplicateCacheListenerDistributedTest.java ########## @@ -283,7 +325,12 @@ public void afterInvalidate(final EntryEvent<String, Integer> event) { @Override public void afterCreate(final EntryEvent<String, Integer> event) { - // ignore + sharedCountersRule.increment(CREATES); + } + + @Override + public void afterUpdate(final EntryEvent<String, Integer> event) { + sharedCountersRule.increment(UPDATES); Review comment: This is to override the unsupported exception in base cache listener. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org