mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-17 02:51:36 -05:00
Fix incorrect default for proxy setting when downloading STS (#22396)
This commit is contained in:
@@ -96,7 +96,7 @@ export class SqlToolsServer {
|
|||||||
this.config = JSON.parse(rawConfig.toString());
|
this.config = JSON.parse(rawConfig.toString());
|
||||||
this.config.installDirectory = path.join(configDir, this.config.installDirectory);
|
this.config.installDirectory = path.join(configDir, this.config.installDirectory);
|
||||||
this.config.proxy = vscode.workspace.getConfiguration('http').get('proxy');
|
this.config.proxy = vscode.workspace.getConfiguration('http').get('proxy');
|
||||||
this.config.strictSSL = vscode.workspace.getConfiguration('http').get('proxyStrictSSL') || true;
|
this.config.strictSSL = vscode.workspace.getConfiguration('http').get('proxyStrictSSL', true);
|
||||||
return getOrDownloadServer(this.config, handleServerProviderEvent);
|
return getOrDownloadServer(this.config, handleServerProviderEvent);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user