You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: honor disabled proxy support for proxy settings (#1019)
Stop deriving proxy env vars and config from VS Code proxy settings
when http.proxySupport is off, across SSH ProxyCommand and Coder API
HTTP/WebSocket/SSE paths. Inherited proxy env vars are preserved.
Watch http.proxySupport to reconnect streams and prompt SSH reload on
change. Also deprecate coder.proxyBypass in favor of http.noProxy.
Fixes#1017
Copy file name to clipboardExpand all lines: package.json
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -123,7 +123,8 @@
123
123
"scope": "machine"
124
124
},
125
125
"coder.proxyBypass": {
126
-
"markdownDescription": "If not set, will inherit from the `no_proxy` or `NO_PROXY` environment variables. `http.proxySupport` must be set to `on` or `off`, otherwise VS Code will override the proxy agent set by the plugin.",
126
+
"markdownDescription": "If not set, will inherit from the `no_proxy` or `NO_PROXY` environment variables. Has no effect when `http.proxySupport` is set to `off`. With values other than `on`, VS Code will override the proxy agent set by the plugin.",
0 commit comments