Skip to content

Commit

Permalink
Merge pull request #298 from herrlock/bugfix/nonProxyHosts
Browse files Browse the repository at this point in the history
Split the value from the nonProxyHosts-field into a list by the pipe
  • Loading branch information
jeremylong authored Dec 12, 2022
2 parents bfc6eda + 13e14e9 commit ba4df27
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ abstract class ConfiguredTask extends DefaultTask {
config.proxy.password = proxyPassword
}
if (!Strings.isNullOrEmpty(nonProxyHosts)) {
config.proxy.nonProxyHosts = nonProxyHosts
config.proxy.nonProxyHosts = nonProxyHosts.tokenize("|")
}
}
settings.setStringIfNotEmpty(PROXY_SERVER, config.proxy.server)
Expand Down

0 comments on commit ba4df27

Please sign in to comment.