gaurav-narula commented on code in PR #15434: URL: https://github.com/apache/kafka/pull/15434#discussion_r1503432226
########## clients/src/test/java/org/apache/kafka/common/security/ssl/NettySslEngineFactory.java: ########## @@ -0,0 +1,159 @@ +package org.apache.kafka.common.security.ssl; + +import io.netty.buffer.ByteBufAllocator; +import io.netty.handler.ssl.SslContext; +import io.netty.handler.ssl.SslContextBuilder; +import io.netty.handler.ssl.SslProvider; +import org.apache.kafka.common.KafkaException; +import org.apache.kafka.common.config.SslConfigs; +import org.apache.kafka.common.config.internals.BrokerSecurityConfigs; +import org.apache.kafka.common.config.types.Password; +import org.apache.kafka.common.network.Mode; +import org.apache.kafka.common.utils.SecurityUtils; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import javax.net.ssl.KeyManagerFactory; +import javax.net.ssl.SSLEngine; +import javax.net.ssl.SSLParameters; +import javax.net.ssl.TrustManagerFactory; +import java.security.KeyStore; +import java.util.Collections; +import java.util.List; +import java.util.Map; + +public class NettySslEngineFactory extends DefaultSslEngineFactory { Review Comment: 👍 Reverted that commit and added the unit test in 79902f5 -- 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