Author: wang
Date: Tue Oct 15 18:41:24 2013
New Revision: 1532481

URL: http://svn.apache.org/r1532481
Log:
HADOOP-100046. Print a log message when SSL is enabled (David S. Wang via wang)

Modified:
    
hadoop/common/branches/branch-2.2/hadoop-common-project/hadoop-common/CHANGES.txt
    
hadoop/common/branches/branch-2.2/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/http/HttpServer.java

Modified: 
hadoop/common/branches/branch-2.2/hadoop-common-project/hadoop-common/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-2.2/hadoop-common-project/hadoop-common/CHANGES.txt?rev=1532481&r1=1532480&r2=1532481&view=diff
==============================================================================
--- 
hadoop/common/branches/branch-2.2/hadoop-common-project/hadoop-common/CHANGES.txt
 (original)
+++ 
hadoop/common/branches/branch-2.2/hadoop-common-project/hadoop-common/CHANGES.txt
 Tue Oct 15 18:41:24 2013
@@ -8,6 +8,9 @@ Release 2.2.1 - UNRELEASED
 
   IMPROVEMENTS
 
+    HADOOP-10046. Print a log message when SSL is enabled.
+    (David S. Wang via wang)
+
   OPTIMIZATIONS
 
   BUG FIXES

Modified: 
hadoop/common/branches/branch-2.2/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/http/HttpServer.java
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-2.2/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/http/HttpServer.java?rev=1532481&r1=1532480&r2=1532481&view=diff
==============================================================================
--- 
hadoop/common/branches/branch-2.2/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/http/HttpServer.java
 (original)
+++ 
hadoop/common/branches/branch-2.2/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/http/HttpServer.java
 Tue Oct 15 18:41:24 2013
@@ -233,6 +233,7 @@ public class HttpServer implements Filte
       }
       listener.setHost(bindAddress);
       listener.setPort(port);
+      LOG.info("SSL is enabled on " + toString());
     } else {
       listenerStartedExternally = true;
       listener = connector;


Reply via email to