We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25c5420 commit 46c99ecCopy full SHA for 46c99ec
http-clients/netty-nio-client/src/main/java/software/amazon/awssdk/http/nio/netty/ProxyConfiguration.java
@@ -271,7 +271,8 @@ private BuilderImpl(ProxyConfiguration proxyConfiguration) {
271
this.scheme = proxyConfiguration.scheme;
272
this.host = proxyConfiguration.host;
273
this.port = proxyConfiguration.port;
274
- this.nonProxyHosts = proxyConfiguration.nonProxyHosts;
+ this.nonProxyHosts = proxyConfiguration.nonProxyHosts != null ?
275
+ new HashSet<>(proxyConfiguration.nonProxyHosts) : null;
276
this.username = proxyConfiguration.username;
277
this.password = proxyConfiguration.password;
278
}
0 commit comments