Skip to content

Commit f1e22ae

Browse files
authored
fix(amazonq): disable experimental proxy (#7904)
## Problem There is an issue we suspect is related to the recent support we added for proxy auto-discovery on this GitHub issue: #7878 ## Solution Disabling the experimental proxy support --- - Treat all work as PUBLIC. Private `feature/x` branches will not be squash-merged at release time. - Your code changes must meet the guidelines in [CONTRIBUTING.md](https://github.com/aws/aws-toolkit-vscode/blob/master/CONTRIBUTING.md#guidelines). - License: I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent 8be30f1 commit f1e22ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/shared/utilities/proxyUtil.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export class ProxyUtil {
6868
*/
6969
private static async setProxyEnvironmentVariables(config: ProxyConfig): Promise<void> {
7070
// Always enable experimental proxy support for better handling of both explicit and transparent proxies
71-
process.env.EXPERIMENTAL_HTTP_PROXY_SUPPORT = 'true'
71+
process.env.EXPERIMENTAL_HTTP_PROXY_SUPPORT = 'false'
7272

7373
const proxyUrl = config.proxyUrl
7474
// Set proxy environment variables

0 commit comments

Comments
 (0)