albertogpz commented on a change in pull request #6739:
URL: https://github.com/apache/geode/pull/6739#discussion_r694088486
##########
File path:
geode-core/src/main/java/org/apache/geode/internal/cache/event/DistributedEventTracker.java
##########
@@ -370,6 +383,17 @@ public boolean hasSeenEvent(EventID eventID,
InternalCacheEvent tagHolder) {
if (evh.isRemoved() || evh.getLastSequenceNumber() <
eventID.getSequenceID()) {
return false;
}
+
+ if (tagHolder instanceof EntryEventImpl && evh.getKeySequenceIdSize() >
0) {
Review comment:
If evh.getKeySequenceIdSize() == 0 you may also return false. Shouldn't
you?
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]