ijuma commented on a change in pull request #10828: URL: https://github.com/apache/kafka/pull/10828#discussion_r646138828
########## File path: core/src/test/scala/unit/kafka/log/LogConfigTest.scala ########## @@ -162,6 +162,21 @@ class LogConfigTest { assertNull(nullServerDefault) } + @Test + def testOverriddenConfigsAsLoggableString(): Unit = { + val kafkaProps = TestUtils.createBrokerConfig(nodeId = 0, zkConnect = "") + kafkaProps.put("unknown.broker.password.config", "aaaaa") + kafkaProps.put(KafkaConfig.SslKeyPasswordProp, "somekeypassword") Review comment: Yes, we can. The goal of this test is not to verify that, but no harm in covering it too. -- 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