apoorvmittal10 commented on code in PR #14843:
URL: https://github.com/apache/kafka/pull/14843#discussion_r1413029293


##########
clients/src/main/java/org/apache/kafka/clients/NetworkClient.java:
##########
@@ -1222,6 +1249,95 @@ private InProgressData(int requestVersion, boolean 
isPartialUpdate) {
 
     }
 
+    class TelemetrySender {
+
+        private final ClientTelemetrySender clientTelemetrySender;
+        private Node stickyNode;
+
+        public TelemetrySender(ClientTelemetrySender clientTelemetrySender) {
+            this.clientTelemetrySender = clientTelemetrySender;
+        }
+
+        public long maybeUpdate(long now) {
+            long timeToNextUpdate = 
clientTelemetrySender.timeToNextUpdate(defaultRequestTimeoutMs);

Review Comment:
   I have tried to be consistent with the other methods in `NetworkClient` 
where metadata has `long timeToNextMetadataUpdate = 
metadata.timeToNextUpdate(now);`, also close and disconnect has `long now = 
time.milliseconds();`.
   
   I have made the changes in other PR to include `ms` to be consistent as the 
file was newly introduced but seems it's mixed in clients code and trying to be 
consistent (best efforts) for the respective files. Please let me know if you 
disagree and I should include `ms` anyways. 



-- 
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: jira-unsubscr...@kafka.apache.org

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

Reply via email to