mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-13 11:38:36 -05:00
More strict SSL proxy setting fixes (#22404)
This commit is contained in:
@@ -30,7 +30,7 @@ export class ServiceClient {
|
||||
const config: IConfig = JSON.parse(rawConfig.toString());
|
||||
config.installDirectory = path.join(context.extensionPath, config.installDirectory);
|
||||
config.proxy = this.apiWrapper.getConfiguration('http').get('proxy');
|
||||
config.strictSSL = this.apiWrapper.getConfiguration('http').get('proxyStrictSSL') || true;
|
||||
config.strictSSL = this.apiWrapper.getConfiguration('http').get('proxyStrictSSL', true);
|
||||
|
||||
const serverdownloader = new ServerProvider(config);
|
||||
serverdownloader.eventEmitter.onAny(this.generateHandleServerProviderEvent());
|
||||
|
||||
Reference in New Issue
Block a user