Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1871,12 +1871,10 @@ boolean hasSubscriptionUpdates() {

synchronized void updateSubscribedTopics(final Set<String> topics,
final String logPrefix) {
log.debug("{}found {} topics possibly matching subscription", logPrefix, topics);
log.debug("{}found {} topics possibly matching subscription", logPrefix, topics.size());
Comment thread
tedyu marked this conversation as resolved.
Outdated
subscriptionUpdates.clear();
subscriptionUpdates.addAll(topics);

log.debug("{}updating builder with {} topic(s) with possible matching regex subscription(s)",
logPrefix, subscriptionUpdates);
setRegexMatchedTopicsToSourceNodes();
setRegexMatchedTopicToStateStore();
}
Expand Down