cmccabe commented on a change in pull request #10281: URL: https://github.com/apache/kafka/pull/10281#discussion_r595631316
########## File path: clients/src/main/java/org/apache/kafka/clients/admin/KafkaAdminClient.java ########## @@ -1136,17 +1185,12 @@ private void timeoutCallsInFlight(TimeoutProcessor processor) { // only one we need to check the timeout for. Call call = contexts.get(0); if (processor.callHasExpired(call)) { - if (call.aborted) { - log.warn("Aborted call {} is still in callsInFlight.", call); - } else { - log.debug("Closing connection to {} due to timeout while awaiting {}", nodeId, call); - call.aborted = true; - client.disconnect(nodeId); - numTimedOut++; - // We don't remove anything from the callsInFlight data structure. Because the connection - // has been closed, the calls should be returned by the next client#poll(), - // and handled at that point. - } + log.debug("Disconnecting from {} due to timeout while awaiting {}", nodeId, call); Review comment: OK, let's raise it to `INFO`. ---------------------------------------------------------------- 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: us...@infra.apache.org