lianetm commented on code in PR #14945:
URL: https://github.com/apache/kafka/pull/14945#discussion_r1417892970


##########
clients/src/main/java/org/apache/kafka/clients/consumer/internals/CommitRequestManager.java:
##########
@@ -224,6 +224,13 @@ boolean canAutoCommit() {
         return autoCommitState.isPresent() && 
!subscriptions.allConsumed().isEmpty();
     }
 
+    /**
+     * Updates the member ID and epoch upon receiving 
ConsumerGroupHeartbeatResponse.
+     */
+    void updateMemberInformation(String memberId, int memberEpoch) {
+        groupState.generation = new GroupState.Generation(memberEpoch, 
memberId, null);
+    }

Review Comment:
   Yes, I'm on this and will come out in the commit PR, so if we want to 
unblock the e2e I'm ok with keeping this as temporary fix.



-- 
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

Reply via email to