Skip to content
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

Add EOF condition to special error case handling #506

Merged
merged 1 commit into from
Mar 2, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions provider/image.go
Original file line number Diff line number Diff line change
Expand Up @@ -473,6 +473,11 @@ func processLogLine(msg string) (string, error) {
if jm.Error.Code == 401 {
return info, fmt.Errorf("authentication is required")
}
if jm.Error.Message == "EOF" {
return info, fmt.Errorf("%s\n: This error is most likely due to incorrect or mismatched registry "+
"credentials. Please double check you are using the correct credentials and registry name.",
jm.Error.Message)
}
return info, fmt.Errorf(jm.Error.Message)
}
if jm.From != "" {
Expand Down