Skip to content

Commit

Permalink
Add EOF condition to special error case handling (#506)
Browse files Browse the repository at this point in the history
  • Loading branch information
guineveresaenger authored Mar 2, 2023
1 parent f02b21f commit f8b981d
Showing 1 changed file with 5 additions and 0 deletions.
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

0 comments on commit f8b981d

Please sign in to comment.