Description
In the current code, we use the Cloud store's protocol to set the proxy's port(If no port is set).
if (conf.getBoolean(SECURE_CONNECTIONS, DEFAULT_SECURE_CONNECTIONS)) { LOG.warn("Proxy host set without port. Using HTTPS default 443"); awsConf.setProxyPort(443); } else { LOG.warn("Proxy host set without port. Using HTTP default 80"); awsConf.setProxyPort(80); }
We should use the proxy protocol instead.
Attachments
Issue Links
- relates to
-
HADOOP-18499 S3A to support HTTPS web proxies
- Resolved