-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
cmd/go: panics with GOAUTH='git dir' go get -x #71604
Comments
I think it's this line passing a |
go get
when running in debug mode
@seankhliao Yes, I've already created a CL to fix it. |
Change https://go.dev/cl/647615 mentions this issue: |
Will this be backported into 1.24? It doesn't just affect git auth; it also affects command auth. We were excited to start using this for the Google artifact registry go proxy, but without the above CL, it doesn't function. Ive tested this CL locally and confirm it does fix the command usecase. Only netrc is unaffected. This also makes me question if the tests actually function for this case as all manual reproductions of this resulted in a panic. |
since this only affects debug mode (-x), i think unlikely? |
right.... every test ive run has been in debug mode (i liked to see it returning 2xx in the logs).. sorry for the noise. 🤦 |
@gopherbot please backport this to go1.24. This is a bug |
Backport issue(s) opened: #71687 (for 1.24). Remember to create the cherry-pick CL(s) as soon as the patch is submitted to master, according to https://go.dev/wiki/MinorReleases. |
We think this should be back-ported because -x is a normal flag for the Go Command. There is no workaround to get -x to work in this case because of the panic. |
Go version
go version devel go1.25-7a2f757c52 Fri Feb 7 02:19:17 2025 -0800 darwin/arm64
Output of
go env
in your module/workspace:GOAUTH='git /Users/quantong'
What did you do?
Related: #26232
https://docs.gitlab.com/ee/user/project/use_project_as_go_package.html#authenticate-git-requests-to-private-subgroups
Instead of placing the personal access token in
.netrc
file, I'm trying to use git authentication method by setting theGOAUTH
environment variable togit /Users/quantong
.Assuming that GitLab fix their side to return a 4xx status code when running
go get
on a private repo in a sub-group (version v16.8.6 currently returns a 200):What did you see happen?
What did you expect to see?
go get -x
a private repo in a subgroup should not panic when using git authentication method.The text was updated successfully, but these errors were encountered: