-
Notifications
You must be signed in to change notification settings - Fork 18.7k
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
Revert reporting of multiple pull errors #19424
Revert reporting of multiple pull errors #19424
Conversation
@aaronlehmann thanks, would you mind updating |
This was why we have that weird newline concatenated error in #19159 also I believe |
dee5c75
to
bdea5fb
Compare
@tiborvass Added |
LGTM |
1 similar comment
LGTM |
Revert the portions of moby#17617 that report all errors when a pull falls back, and go back to just reporting the last error. This was nice to have, but causes some UX issues because nonexistent images show additional "unauthorized" errors. Keep the part of the PR that handled ENOSPC, as this appears to work even without tracking multiple errors. Fixes moby#19419 Signed-off-by: Aaron Lehmann <[email protected]>
bdea5fb
to
87338bf
Compare
Removed |
ARM failed;
|
Revert reporting of multiple pull errors
@aaronlehmann @tiborvass btw I'm now getting:
when I try to pull from a private registry w/o auth
at least I was getting the correct error: |
ping @aaronlehmann @tiborvass ^^ |
I looked into this today. You are probably using It would be a bit tricky to fix this. I think it may be better to discourage the use of |
Revert the portions of #17617 that report all errors when a pull
falls back, and go back to just reporting the last error. This was nice
to have, but causes some UX issues because nonexistent images show
additional "unauthorized" errors.
Keep the part of the PR that handled ENOSPC, as this appears to work
even without tracking multiple errors.
Fixes #19419