HADOOP-17837: Add unresolved endpoint value to UnknownHostException (#3272)
This commit is contained in:
parent
a73b64f86b
commit
5e54d92e6e
@ -589,7 +589,7 @@ public static void connect(Socket socket,
|
||||
} 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 void testInvalidAddress() throws Throwable {
|
||||
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
Block a user