HADOOP-9657. NetUtils.wrapException to have special handling for 0.0.0.0 addresses and :0 ports. Contributed by Varun Saxena.
This commit is contained in:
parent
03af442e76
commit
67e7673750
|
@ -742,6 +742,14 @@ public class NetUtils {
|
|||
+ ";"
|
||||
+ see("BindException"));
|
||||
} else if (exception instanceof ConnectException) {
|
||||
// Check if client was trying to connect to an unspecified IPv4 address
|
||||
// (0.0.0.0) or IPv6 address(0:0:0:0:0:0:0:0 or ::)
|
||||
if ((destHost != null && (destHost.equals("0.0.0.0") ||
|
||||
destHost.equals("0:0:0:0:0:0:0:0") || destHost.equals("::")))
|
||||
|| destPort == 0) {
|
||||
return wrapWithMessage(exception, "Your endpoint configuration" +
|
||||
" is wrong;" + see("UnsetHostnameOrPort"));
|
||||
} else {
|
||||
// connection refused; include the host:port in the error
|
||||
return wrapWithMessage(exception,
|
||||
"Call From "
|
||||
|
@ -754,6 +762,7 @@ public class NetUtils {
|
|||
+ exception
|
||||
+ ";"
|
||||
+ see("ConnectionRefused"));
|
||||
}
|
||||
} else if (exception instanceof UnknownHostException) {
|
||||
return wrapWithMessage(exception,
|
||||
"Invalid host name: "
|
||||
|
|
Loading…
Reference in New Issue