Jelajahi Sumber

HADOOP-6760. WebServer shouldn't increase port number in case of negative port
setting caused by Jetty's race (cos)


git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.20@947224 13f79535-47bb-0310-9956-ffa450edef68

Konstantin Boudnik 15 tahun lalu
induk
melakukan
a5e75f2a5c
2 mengubah file dengan 3 tambahan dan 26 penghapusan
  1. 3 0
      CHANGES.txt
  2. 0 26
      src/core/org/apache/hadoop/http/HttpServer.java

+ 3 - 0
CHANGES.txt

@@ -11,6 +11,9 @@ Release 0.20.3 - Unreleased
 
   BUG FIXES
 
+    HADOOP-6760. WebServer shouldn't increase port number in case of negative
+    port setting caused by Jetty's race (cos)
+
     MAPREDUCE-1522. FileInputFormat may use the default FileSystem for the
     input path. (Tsz Wo (Nicholas), SZE via cdouglas)
 

+ 0 - 26
src/core/org/apache/hadoop/http/HttpServer.java

@@ -459,32 +459,6 @@ public class HttpServer implements FilterContainer {
           } //Workaround end
           LOG.info("Jetty bound to port " + port);
           webServer.start();
-          // Workaround for HADOOP-6386
-          port = listener.getLocalPort();
-          if (port < 0) {
-            LOG.warn("Bounds port is " + port + " after webserver start");
-            for (int i = 0; i < MAX_RETRIES/2; i++) {
-              try {
-                webServer.stop();
-              } catch (Exception e) {
-                LOG.warn("Can't stop  web-server", e);
-              }
-              Thread.sleep(1000);
-              
-              listener.setPort(oriPort == 0 ? 0 : (oriPort += 1));
-              listener.open();
-              Thread.sleep(100);
-              webServer.start();
-              LOG.info(i + "attempts to restart webserver");
-              port = listener.getLocalPort();
-              if (port > 0)
-                break;
-            }
-            if (port < 0)
-              throw new Exception("listener.getLocalPort() is returning " +
-                                "less than 0 even after " +MAX_RETRIES+" resets");
-          }
-          // End of HADOOP-6386 workaround
           break;
         } catch (IOException ex) {
           // if this is a bind exception,