dajac commented on code in PR #16198: URL: https://github.com/apache/kafka/pull/16198#discussion_r1629625845
########## group-coordinator/src/main/java/org/apache/kafka/coordinator/group/consumer/TargetAssignmentBuilder.java: ########## @@ -377,19 +375,19 @@ private Assignment newMemberAssignment( ) { MemberAssignment newMemberAssignment = newGroupAssignment.members().get(memberId); if (newMemberAssignment != null) { - return new Assignment(newMemberAssignment.targetPartitions()); + return new Assignment(newMemberAssignment.partitions()); } else { return Assignment.EMPTY; } } // private for testing - static MemberSubscriptionSpecImpl createMemberSubscriptionSpecImpl( + static MemberSubscriptionAndAssignmentImpl createMemberSubscriptionSpecImpl( Review Comment: Fixed it! -- 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