Skip to content

Commit 096a6e4

Browse files
committed
Disable to investigate known issue (microsoft#185098)
1 parent 3152631 commit 096a6e4

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

src/vs/platform/request/common/request.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,13 @@ function registerProxyConfigurations(scope: ConfigurationScope): void {
177177
default: true,
178178
description: localize('systemCertificates', "Controls whether CA certificates should be loaded from the OS. (On Windows and macOS, a reload of the window is required after turning this off.)"),
179179
restricted: true
180+
},
181+
'http.experimental.systemCertificatesV2': {
182+
type: 'boolean',
183+
tags: ['experimental'],
184+
default: false,
185+
description: localize('systemCertificatesV2', "Controls whether experimental loading of CA certificates from the OS should be enabled. This uses a more general approach than the default implemenation."),
186+
restricted: true
180187
}
181188
}
182189
};

src/vs/workbench/api/node/proxyResolver.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import { ILogService, LogLevel as LogServiceLevel } from 'vs/platform/log/common
1818
import { IExtensionDescription } from 'vs/platform/extensions/common/extensions';
1919
import { LogLevel, createHttpPatch, createProxyResolver, createTlsPatch, ProxySupportSetting, ProxyAgentParams, createNetPatch } from '@vscode/proxy-agent';
2020

21-
const systemCertificatesV2Default = true;
21+
const systemCertificatesV2Default = false;
2222

2323
export function connectProxyResolver(
2424
extHostWorkspace: IExtHostWorkspaceProvider,

0 commit comments

Comments
 (0)