6632169: HttpClient and HttpsClient should not try to reverse lookup IP address of a proxy server

Reviewed-by: michaelm
This commit is contained in:
Chris Hegarty 2010-03-22 11:55:54 +00:00
parent 6fb9ea7278
commit 67639e07f3

View File

@ -630,7 +630,7 @@ final class HttpsClient extends HttpClient
if (!needsTunneling()) {
return null;
} else {
return ((InetSocketAddress)proxy.address()).getHostName();
return super.getProxyHostUsed();
}
}