dajac commented on a change in pull request #11688: URL: https://github.com/apache/kafka/pull/11688#discussion_r802417366
########## File path: clients/src/main/java/org/apache/kafka/clients/consumer/internals/AbstractCoordinator.java ########## @@ -696,8 +698,12 @@ public void handle(JoinGroupResponse joinResponse, RequestFuture<ByteBuffer> fut private RequestFuture<ByteBuffer> onJoinLeader(JoinGroupResponse joinResponse) { try { // perform the leader synchronization and send back the assignment for the group - Map<String, ByteBuffer> groupAssignment = performAssignment(joinResponse.data().leader(), joinResponse.data().protocolName(), - joinResponse.data().members()); + Map<String, ByteBuffer> groupAssignment = performAssignment( + joinResponse.data().leader(), + joinResponse.data().protocolName(), + joinResponse.data().members(), + joinResponse.data().skipAssignment() Review comment: That makes sense. I have renamed the method to avoid the confusion and updated its javadoc. -- 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