ijuma commented on a change in pull request #11295: URL: https://github.com/apache/kafka/pull/11295#discussion_r702924352
########## File path: core/src/main/scala/kafka/server/KafkaConfig.scala ########## @@ -354,10 +354,10 @@ object KafkaConfig { // For ZooKeeper TLS client authentication to be enabled the client must (at a minimum) configure itself as using TLS // with both a client connection socket and a key store location explicitly set. - private[kafka] def zkTlsClientAuthEnabled(zkClientConfig: ZKClientConfig) = { - getZooKeeperClientProperty(zkClientConfig, ZkSslClientEnableProp).getOrElse("false") == "true" && - getZooKeeperClientProperty(zkClientConfig, ZkClientCnxnSocketProp).isDefined && - getZooKeeperClientProperty(zkClientConfig, ZkSslKeyStoreLocationProp).isDefined + private[kafka] def zkTlsClientAuthEnabled(zkClientConfig: ZKClientConfig): Boolean = { + zooKeeperClientProperty(zkClientConfig, ZkSslClientEnableProp).map(_ == "true").getOrElse(false) && Review comment: True, even better: `contains`. :) -- 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