mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Change HTTP code: 404 to a more user friendly Image Not found msg
Docker-DCO-1.1-Signed-off-by: William Henry <whenry@redhat.com> (github: ipbabble)
This commit is contained in:
parent
d736754a47
commit
b45e8fa945
1 changed files with 6 additions and 1 deletions
|
@ -1195,8 +1195,13 @@ func (srv *Server) pullRepository(r *registry.Registry, out io.Writer, localName
|
|||
|
||||
repoData, err := r.GetRepositoryData(remoteName)
|
||||
if err != nil {
|
||||
if strings.Contains(err.Error(), "HTTP code: 404") {
|
||||
return fmt.Errorf("Error: image %s not found", remoteName)
|
||||
} else {
|
||||
// Unexpected HTTP error
|
||||
return err
|
||||
}
|
||||
}
|
||||
|
||||
utils.Debugf("Retrieving the tag list")
|
||||
tagsList, err := r.GetRemoteTags(repoData.Endpoints, remoteName, repoData.Tokens)
|
||||
|
|
Loading…
Reference in a new issue