-
Notifications
You must be signed in to change notification settings - Fork 879
New issue
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
Non-Proxy hosts with wildcards are incorrectly passed to npm #1172
Comments
@tkalmar do you remember any of this? |
short test:
so i can't confirm that npm does not understand this syntax |
Thank you for your swift response, @eirslett and @tkalmar. I missed a piece of the puzzle. The error occurred when running
Error message was:
I tried calling |
@StefanBauerTT
should work. |
I found the place where the proxy settings get passed from the frontend plugin to git via environment variables: Line 54 in b7b060f
Surprisingly though, the no_proxy environment variable is not set here, so right now I don't understand how adding git.corp.network to the |
Ok, sorry for the confustion. Adding So the bottom line of this is that the frontend plugin sets the I will leave it up to you if you consinder this a bug worth fixing or close this ticket with reference to @tkalmar 's workaround from #1172 (comment) . Thank you for your time. |
Steps to reproduce
*.google.de
(see DefaultNpmRunnerTest.java)Expected result
--noproxy=*.google.de
Actual result
--noproxy=.google.de
. The asterisk is missing.npm does not understand this syntax.Analysis
The text was updated successfully, but these errors were encountered: