Ver código fonte

Merge pull request #11532 from dmcgowan/fix-v1-404-issue-11510

Add check for 404 on get repository data
Arnaud Porterie 10 anos atrás
pai
commit
1265395406
1 arquivos alterados com 3 adições e 1 exclusões
  1. 3 1
      registry/session.go

+ 3 - 1
registry/session.go

@@ -280,7 +280,9 @@ func (r *Session) GetRepositoryData(remote string) (*RepositoryData, error) {
 	}
 	// TODO: Right now we're ignoring checksums in the response body.
 	// In the future, we need to use them to check image validity.
-	if res.StatusCode != 200 {
+	if res.StatusCode == 404 {
+		return nil, utils.NewHTTPRequestError(fmt.Sprintf("HTTP code: %d", res.StatusCode), res)
+	} else if res.StatusCode != 200 {
 		errBody, err := ioutil.ReadAll(res.Body)
 		if err != nil {
 			log.Debugf("Error reading response body: %s", err)