dajac commented on code in PR #14557: URL: https://github.com/apache/kafka/pull/14557#discussion_r1426740281
########## clients/src/main/java/org/apache/kafka/clients/consumer/internals/CommitRequestManager.java: ########## @@ -429,21 +492,40 @@ public void onResponse(final ClientResponse response) { long offset = offsetAndMetadata.offset(); Errors error = Errors.forCode(partition.errorCode()); if (error == Errors.NONE) { - log.debug("OffsetCommit {} for partition {}", offset, tp); + log.debug("OffsetCommit completed successfully for offset {} partition {}", offset, tp); continue; } - if (error == Errors.TOPIC_AUTHORIZATION_FAILED) { + if (error == Errors.COORDINATOR_NOT_AVAILABLE || Review Comment: Is there a reason why you completely changed the structure here? The old code looked pretty good. -- 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