Skip to content

Commit

Permalink
Disable to investigate known issue (microsoft#185098)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrmarti committed Sep 28, 2023
1 parent 3152631 commit 096a6e4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions src/vs/platform/request/common/request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,13 @@ function registerProxyConfigurations(scope: ConfigurationScope): void {
default: true,
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.)"),
restricted: true
},
'http.experimental.systemCertificatesV2': {
type: 'boolean',
tags: ['experimental'],
default: false,
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."),
restricted: true
}
}
};
Expand Down
2 changes: 1 addition & 1 deletion src/vs/workbench/api/node/proxyResolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { ILogService, LogLevel as LogServiceLevel } from 'vs/platform/log/common
import { IExtensionDescription } from 'vs/platform/extensions/common/extensions';
import { LogLevel, createHttpPatch, createProxyResolver, createTlsPatch, ProxySupportSetting, ProxyAgentParams, createNetPatch } from '@vscode/proxy-agent';

const systemCertificatesV2Default = true;
const systemCertificatesV2Default = false;

export function connectProxyResolver(
extHostWorkspace: IExtHostWorkspaceProvider,
Expand Down

0 comments on commit 096a6e4

Please sign in to comment.