HDFS-7391. Renable SSLv2Hello in HttpFS. Contributed by Robert Kanter.

This commit is contained in:
Arun C. Murthy 2014-11-12 18:51:46 -08:00
parent 87818ef4e7
commit 9f0319bba1
2 changed files with 3 additions and 1 deletions

View File

@ -70,7 +70,7 @@
described in the APR documentation -->
<Connector port="${httpfs.http.port}" protocol="HTTP/1.1" SSLEnabled="true"
maxThreads="150" scheme="https" secure="true"
clientAuth="false" sslEnabledProtocols="TLSv1"
clientAuth="false" sslEnabledProtocols="TLSv1,SSLv2Hello"
keystoreFile="${httpfs.ssl.keystore.file}"
keystorePass="${httpfs.ssl.keystore.pass}"/>

View File

@ -1430,6 +1430,8 @@ Release 2.6.0 - 2014-11-15
HDFS-7387. NFS may only do partial commit due to a race between COMMIT and write
(brandonli)
HDFS-7391. Renable SSLv2Hello in HttpFS. (rkanter via acmurthy)
Release 2.5.2 - 2014-11-10
INCOMPATIBLE CHANGES