HADOOP-17119. Jetty upgrade to 9.4.x causes MR app fail with IOException. Contributed by Bilwa S T.
(cherry picked from commit 8a58a12626
)
This commit is contained in:
parent
87666e2438
commit
d2ecaf217f
|
@ -1285,7 +1285,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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue