Defer noProxy to settings.pkl or PklProject if not set explicitly (#1143)

Fixes an issue where `http.noProxy` settings are ignored.
This commit is contained in:
Daniel Chao
2025-07-23 10:57:31 -07:00
committed by GitHub
parent bdf6aa6b60
commit 7c8c4438d5
3 changed files with 95 additions and 1 deletions

View File

@@ -321,7 +321,7 @@ class BaseOptions : OptionGroup() {
noProject = projectOptions?.noProject ?: false,
caCertificates = caCertificates,
httpProxy = proxy,
httpNoProxy = noProxy ?: emptyList(),
httpNoProxy = noProxy,
httpRewrites = httpRewrites.ifEmpty { null },
externalModuleReaders = externalModuleReaders,
externalResourceReaders = externalResourceReaders,