Some more cleanup

This commit is contained in:
Reinier Criel 2025-10-23 13:11:51 -07:00
parent 059cba06bc
commit b5988e19c1
2 changed files with 7 additions and 7 deletions

View file

@ -34,7 +34,10 @@ function getSafeChainProxyEnvironmentVariables() {
GLOBAL_AGENT_HTTP_PROXY: `http://localhost:${state.port}`,
NODE_EXTRA_CA_CERTS: getCaCertPath(),
// Following env vars point pip and Python's requests/urllib at a CA bundle file.
// Following env vars point pip and Python's requests/urllib at a CA Cert file.
// pip checks PIP_CERT first
// If pip uses requests library internally, it needs REQUESTS_CA_BUNDLE
// Other Python packages or pip's fallback SSL code may use SSL_CERT_FILE
PIP_CERT: getCaCertPath(),
REQUESTS_CA_BUNDLE: getCaCertPath(),
SSL_CERT_FILE: getCaCertPath(),