This is an automated email from the ASF dual-hosted git repository.

ayushsaxena pushed a commit to branch branch-3.3
in repository https://gitbox.apache.org/repos/asf/hadoop.git


The following commit(s) were added to refs/heads/branch-3.3 by this push:
     new 8a58a12  HADOOP-17119. Jetty upgrade to 9.4.x causes MR app fail with 
IOException. Contributed by Bilwa S T.
8a58a12 is described below

commit 8a58a12626f0332a4a828f312e2007d8c23564ee
Author: Ayush Saxena <[email protected]>
AuthorDate: Mon Jul 20 22:13:48 2020 +0530

    HADOOP-17119. Jetty upgrade to 9.4.x causes MR app fail with IOException. 
Contributed by Bilwa S T.
---
 .../src/main/java/org/apache/hadoop/http/HttpServer2.java           | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git 
a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/http/HttpServer2.java
 
b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/http/HttpServer2.java
index 3fd74f0..8b69d57 100644
--- 
a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/http/HttpServer2.java
+++ 
b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/http/HttpServer2.java
@@ -1346,7 +1346,11 @@ public final class HttpServer2 implements 
FilterContainer {
       try {
         bindListener(listener);
         return;
-      } catch (BindException ex) {
+      } catch (IOException ex) {
+        if (!(ex instanceof BindException)
+            && !(ex.getCause() instanceof BindException)) {
+          throw ex;
+        }
         // Ignore exception. Move to next port.
         ioException = ex;
       }


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to