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
Describe the bug A clear and concise description of what the bug is.
When configuring the proxy ( version 0.13.1) with :
downloadURL = "https://proxy.golang.org" mode = "redirect"
I got lots of error messages in log like:
ERROR[2:39PM]: redirect http-method=GET http-path=/gopkg.in/gorp.v1/@v/v1.7.2.zip request-id=613a7b67-3b2f-4814-a293-73bd370c4088 INFO[2:39PM]: incoming request http-method=GET http-path=/gopkg.in/gorp.v1/@v/v1.7.2.zip http-status=301 request-id=613a7b67-3b2f-4814-a293-73bd370c4088
while in logs of go download i see:
go download
# get https://athens.example.com/gopkg.in/gorp.v1/@v/v1.7.2.mod: 200 OK (0.062s)
meaning it successfully downloaded the package.
So, what does the ERROR message mean in log ?
ERROR
To Reproduce Steps to reproduce the behavior:
Expected behavior A clear and concise description of what you expected to happen.
Environment (please complete the following information):
Linux
0.13.1
s3
Additional context Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
From what I can determine this is standard when you set mode to redirect.
redirect
It looks like if the target zipped archive is not present on the system then it redirects the caller to the URL of where the archive can be found without storing it.
@hydezhao is your point that it shouldn't be an error and is better described as intended functionality?
Sorry, something went wrong.
Hello @matt0x6F yes exactly. If there is no "error" we shouldn't tag the log with ERROR, which spams the log and creates confusion .
No branches or pull requests
Describe the bug
A clear and concise description of what the bug is.
When configuring the proxy ( version 0.13.1) with :
I got lots of error messages in log like:
while in logs of
go download
i see:meaning it successfully downloaded the package.
So, what does the
ERROR
message mean in log ?To Reproduce
Steps to reproduce the behavior:
Expected behavior
A clear and concise description of what you expected to happen.
Environment (please complete the following information):
Linux
0.13.1
s3
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: