mimaison commented on code in PR #16133: URL: https://github.com/apache/kafka/pull/16133#discussion_r1622122477
########## core/src/main/scala/kafka/server/DynamicBrokerConfig.scala: ########## @@ -319,7 +321,7 @@ class DynamicBrokerConfig(private val kafkaConfig: KafkaConfig) extends Logging } private def verifyReconfigurableConfigs(configNames: Set[String]): Unit = CoreUtils.inWriteLock(lock) { - val nonDynamic = configNames.filter(DynamicConfig.Broker.nonDynamicProps.contains) + val nonDynamic = configNames.filter(nonDynamicProps.contains) Review Comment: Nice suggestion! -- 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