showuon commented on a change in pull request #8966: URL: https://github.com/apache/kafka/pull/8966#discussion_r448219612
########## File path: core/src/main/scala/kafka/server/AdminManager.scala ########## @@ -355,8 +355,8 @@ class AdminManager(val config: KafkaConfig, def createResponseConfig(configs: Map[String, Any], createConfigEntry: (String, Any) => DescribeConfigsResponseData.DescribeConfigsResourceResult): DescribeConfigsResponseData.DescribeConfigsResult = { val filteredConfigPairs = configs.filter { case (configName, _) => - /* Always returns true if configNames is None */ - resource.configurationKeys.asScala.forall(_.contains(configName)) + /* Always returns true if configurationKeys is null */ + if (resource.configurationKeys != null) resource.configurationKeys.asScala.forall(_.contains(configName)) else true Review comment: good suggestion. Thanks. ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org