chia7712 commented on code in PR #16786:
URL: https://github.com/apache/kafka/pull/16786#discussion_r1713462665
##########
group-coordinator/src/main/java/org/apache/kafka/coordinator/group/GroupCoordinatorShard.java:
##########
@@ -790,6 +806,27 @@ public void replay(
);
break;
+ case 12:
+ groupMetadataManager.replay(
+ (ShareGroupTargetAssignmentMetadataKey) key.message(),
+ (ShareGroupTargetAssignmentMetadataValue)
Utils.messageOrNull(value)
+ );
+ break;
+
+ case 13:
+ groupMetadataManager.replay(
+ (ShareGroupTargetAssignmentMemberKey) key.message(),
+ (ShareGroupTargetAssignmentMemberValue)
Utils.messageOrNull(value)
+ );
+ break;
+
+ case 14:
+ groupMetadataManager.replay(
+ (ShareGroupCurrentMemberAssignmentKey) key.message(),
+ (ShareGroupCurrentMemberAssignmentValue)
Utils.messageOrNull(value)
+ );
+ break;
+
Review Comment:
Pardon me, why `ShareGroupStatePartitionMetadataValue` (version 15) does not
join this party? or it is a future work.
--
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]