Merge VS Code 1.31.1 (#4283)

This commit is contained in:
Matt Irvine
2019-03-15 13:09:45 -07:00
committed by GitHub
parent 7d31575149
commit 86bac90001
1716 changed files with 53308 additions and 48375 deletions

View File

@@ -56,8 +56,8 @@ Registry.as<IConfigurationRegistry>(Extensions.Configuration)
localize('proxySupportOn', "Enable proxy support for extensions."),
localize('proxySupportOverride', "Enable proxy support for extensions, override request options."),
],
default: 'off',
description: localize('proxySupport', "Experimental setting: Use the proxy support for extensions.")
default: 'override',
description: localize('proxySupport', "Use the proxy support for extensions.")
}
}
});

View File

@@ -27,7 +27,7 @@ export class RequestService implements IRequestService {
constructor(
@IConfigurationService configurationService: IConfigurationService,
@ILogService private logService: ILogService
@ILogService private readonly logService: ILogService
) {
this.configure(configurationService.getValue<IHTTPConfiguration>());
configurationService.onDidChangeConfiguration(() => this.configure(configurationService.getValue()), this, this.disposables);