HADOOP-17837: Add unresolved endpoint value to UnknownHostException (#3272)
(cherry picked from commit 5e54d92e6e
)
This commit is contained in:
parent
e9ba4f4591
commit
7659b62682
|
@ -588,7 +588,7 @@ public class NetUtils {
|
|||
} catch (SocketTimeoutException ste) {
|
||||
throw new ConnectTimeoutException(ste.getMessage());
|
||||
} catch (UnresolvedAddressException uae) {
|
||||
throw new UnknownHostException(uae.getMessage());
|
||||
throw new UnknownHostException(endpoint.toString());
|
||||
}
|
||||
|
||||
// There is a very rare case allowed by the TCP specification, such that
|
||||
|
|
|
@ -111,6 +111,7 @@ public class TestNetUtils {
|
|||
fail("Should not have connected");
|
||||
} catch (UnknownHostException uhe) {
|
||||
LOG.info("Got exception: ", uhe);
|
||||
assertEquals("invalid-test-host:0", uhe.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue