File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
packages/core/src/shared/utilities Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ export class ProxyUtil {
39
39
private static getProxyConfiguration ( ) : ProxyConfig {
40
40
const httpConfig = vscode . workspace . getConfiguration ( 'http' )
41
41
const proxyUrl = httpConfig . get < string > ( 'proxy' )
42
- this . logger . debug ( `Proxy URL: ${ proxyUrl } ` )
42
+ this . logger . debug ( `Proxy URL Setting in VSCode Settings : ${ proxyUrl } ` )
43
43
44
44
const amazonQConfig = vscode . workspace . getConfiguration ( 'amazonQ' )
45
45
const proxySettings = amazonQConfig . get < {
@@ -60,6 +60,8 @@ export class ProxyUtil {
60
60
61
61
// Always enable experimental proxy support for better handling of both explicit and transparent proxies
62
62
process . env . EXPERIMENTAL_HTTP_PROXY_SUPPORT = 'true'
63
+ // Add OpenSSL certificate store support
64
+ process . env . NODE_OPTIONS = '--use-openssl-ca'
63
65
64
66
// Set proxy environment variables
65
67
if ( proxyUrl ) {
You can’t perform that action at this time.
0 commit comments