Merge pull request #1004 from drewhk/wip-2833-only-ssl-client-handshakes-drewhk

Only client should issue an SSL handshake #2833
This commit is contained in:
Roland Kuhn 2013-01-08 08:57:27 -08:00
commit bddc992a78

View file

@ -248,7 +248,7 @@ class NettyTransport(private val settings: NettyTransportSettings, private val s
private def sslHandler(isClient: Boolean): SslHandler = {
val handler = NettySSLSupport(settings.SslSettings.get, log, isClient)
handler.setIssueHandshake(true)
if (isClient) handler.setIssueHandshake(true)
handler
}