kirktrue commented on code in PR #14406:
URL: https://github.com/apache/kafka/pull/14406#discussion_r1348029671
##########
clients/src/main/java/org/apache/kafka/clients/consumer/internals/AbstractFetch.java:
##########
@@ -330,7 +343,7 @@ private Map<Node, FetchSessionHandler.FetchRequestData>
prepareCloseFetchSession
// skip sending the close request.
final Node fetchTarget = cluster.nodeById(fetchTargetNodeId);
- if (fetchTarget == null || client.isUnavailable(fetchTarget)) {
+ if (fetchTarget == null || isUnavailable(fetchTarget)) {
Review Comment:
True. We'll handle that in KAFKA-15556.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]