lianetm commented on code in PR #16345:
URL: https://github.com/apache/kafka/pull/16345#discussion_r1643334348
##########
clients/src/main/java/org/apache/kafka/clients/consumer/internals/CommitRequestManager.java:
##########
@@ -741,6 +756,9 @@ public void onResponse(final ClientResponse response) {
"failed with unknown member ID. " +
error.message()));
return;
} else if (error == Errors.STALE_MEMBER_EPOCH) {
+ log.error("OffsetCommit failed for member {} with
stale member epoch error. Last epoch sent: {}",
+ memberInfo.memberId.orElse("undefined"),
+ lastEpochSentOnCommit.isPresent() ?
lastEpochSentOnCommit.get() : "None");
Review Comment:
Sure, done.
--
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]