DL1231 commented on code in PR #15067:
URL: https://github.com/apache/kafka/pull/15067#discussion_r1667588486


##########
core/src/main/scala/kafka/server/metadata/DynamicConfigPublisher.scala:
##########
@@ -114,6 +114,18 @@ class DynamicConfigPublisher(
                     s"${resource.name()} with new configuration: 
${toLoggableProps(resource, props).mkString(",")} " +
                     s"in $deltaName", t)
                 })
+            case GROUP =>
+              // Apply changes to a group's dynamic configuration.
+              
dynamicConfigHandlers.get(ConfigType.GROUP).foreach(groupConfigHandler =>
+                try {
+                  info(s"Updating group ${resource.name()} with new 
configuration : " +
+                    toLoggableProps(resource, props).mkString(","))
+                  groupConfigHandler.processConfigChanges(resource.name(), 
props)

Review Comment:
   I have removed validate in updateGroupConfig.



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