ShivsundarR commented on code in PR #19886: URL: https://github.com/apache/kafka/pull/19886#discussion_r2123616437
########## clients/src/main/java/org/apache/kafka/clients/consumer/internals/NetworkClientDelegate.java: ########## @@ -144,6 +145,17 @@ public void tryConnect(Node node) { * @param currentTimeMs current time */ public void poll(final long timeoutMs, final long currentTimeMs) { + poll(timeoutMs, currentTimeMs, false); + } + + /** + * Returns the responses of the sent requests. This method will try to send the unsent requests, poll for responses, + * and check the disconnected nodes. + * + * @param timeoutMs timeout time + * @param currentTimeMs current time + */ Review Comment: Thanks, I have updated it now. -- 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