kirklund commented on a change in pull request #5953:
URL: https://github.com/apache/geode/pull/5953#discussion_r564778442
##########
File path:
geode-core/src/main/java/org/apache/geode/internal/cache/tier/sockets/ClientRegistrationEventQueueManager.java
##########
@@ -37,15 +39,25 @@
*/
public class ClientRegistrationEventQueueManager {
private static final Logger logger = LogService.getLogger();
+
private final Set<ClientRegistrationEventQueue> registeringProxyEventQueues =
ConcurrentHashMap.newKeySet();
void add(final InternalCacheEvent event,
+ final ClientUpdateMessageImpl clientMessage,
final Conflatable conflatable,
final Set<ClientProxyMembershipID> originalFilterClientIDs,
final CacheClientNotifier cacheClientNotifier) {
- if (registeringProxyEventQueues.isEmpty())
+ if (registeringProxyEventQueues.isEmpty()) {
return;
+ }
+
+ if (originalFilterClientIDs.isEmpty()) {
Review comment:
Fixed!
----------------------------------------------------------------
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:
[email protected]