aglicacha commented on code in PR #12729: URL: https://github.com/apache/kafka/pull/12729#discussion_r996423147
########## core/src/main/scala/kafka/zk/AdminZkClient.scala: ########## @@ -365,6 +365,29 @@ class AdminZkClient(zkClient: KafkaZkClient) extends Logging { case ConfigType.Ip => changeIpConfig(entityName, configs) case _ => throw new IllegalArgumentException(s"$entityType is not a known entityType. Should be one of ${ConfigType.all}") } + + if ((ConfigType.Client.equals(entityType) || ConfigType.User.equals(entityType) || ConfigType.Ip.equals(entityType)) && configs.isEmpty) { Review Comment: Yeah, I have added some annotation to explain 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