We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
20.16.0
10.8.1
4.9.0
Setting up HTTPS_PROXY via environment variable doesn't work as there's a bug in the code while constructing proxy.Auth object.
Correctly set the username/password from HTTPS_PROXY environment variable.
undefined:undefined is being set
Both cases the issue is the line
proxy.proxyAuth = `${proxyUrlEnv.username}:${proxyUrlEnv.password}`
proxyUrlEnv is a string object returned from getProxyForUrl method.
Changing the line to
proxy.proxyAuth = `${parsedProxyUrl.username}:${parsedProxyUrl.password}`
fixes the issue.
The text was updated successfully, but these errors were encountered:
@abhimanbhau 4.9.1 version contains your fixes, thanks for the contribution
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Node.js version
20.16.0
NPM version
10.8.1
@checkly/cli version
4.9.0
Steps to reproduce
Setting up HTTPS_PROXY via environment variable doesn't work as there's a bug in the code while constructing proxy.Auth object.
What is expected?
Correctly set the username/password from HTTPS_PROXY environment variable.
What is actually happening?
undefined:undefined is being set
Any additional comments?
Both cases the issue is the line
proxyUrlEnv is a string object returned from getProxyForUrl method.
Changing the line to
fixes the issue.
The text was updated successfully, but these errors were encountered: