lhotari commented on code in PR #22556:
URL: https://github.com/apache/pulsar/pull/22556#discussion_r1575054920


##########
pulsar-broker/src/main/java/org/apache/pulsar/broker/service/persistent/PersistentTopic.java:
##########
@@ -2107,8 +2108,7 @@ public void updateRates(NamespaceStats nsStats, 
NamespaceBundleStats bundleStats
 
         replicators.forEach((region, replicator) -> replicator.updateRates());
 
-        nsStats.producerCount += producers.size();
-        bundleStats.producerCount += producers.size();
+        final AtomicInteger producerCount = new AtomicInteger();

Review Comment:
   I guess this could be a `org.apache.commons.lang3.mutable.MutableInt` since 
this is used in single threaded code.



-- 
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: commits-unsubscr...@pulsar.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to