UladzislauBlok commented on code in PR #19967:
URL: https://github.com/apache/kafka/pull/19967#discussion_r2311954715
##########
group-coordinator/src/main/java/org/apache/kafka/coordinator/group/GroupConfigManager.java:
##########
@@ -52,6 +54,10 @@ public void updateGroupConfig(String groupId, Properties
newGroupConfig) {
throw new InvalidRequestException("Group name can't be empty.");
}
+ if (groupConfigListener != null) {
+ groupConfigListener.onGroupConfigUpdate(groupId, newGroupConfig);
+ }
+
Review Comment:
@squah-confluent Hello, thanks for the review and proposed solution. I'll
analyze how to get this done with approach you've proposed and add my analysis
to ticket. Any hints / suggestions from your side?
@lucasbru FYI
--
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]