Merge pull request #141 from stevvooe/put-manifest-http-status
Manifest PUT should return 202 Accepted status
This commit is contained in:
commit
ef5591924c
2 changed files with 3 additions and 2 deletions
|
@ -336,8 +336,7 @@ func TestManifestAPI(t *testing.T) {
|
|||
}
|
||||
|
||||
resp = putManifest(t, "putting signed manifest", manifestURL, signedManifest)
|
||||
|
||||
checkResponse(t, "putting signed manifest", resp, http.StatusOK)
|
||||
checkResponse(t, "putting signed manifest", resp, http.StatusAccepted)
|
||||
|
||||
resp, err = http.Get(manifestURL)
|
||||
if err != nil {
|
||||
|
|
|
@ -92,6 +92,8 @@ func (imh *imageManifestHandler) PutImageManifest(w http.ResponseWriter, r *http
|
|||
w.WriteHeader(http.StatusBadRequest)
|
||||
return
|
||||
}
|
||||
|
||||
w.WriteHeader(http.StatusAccepted)
|
||||
}
|
||||
|
||||
// DeleteImageManifest removes the image with the given tag from the registry.
|
||||
|
|
Loading…
Reference in a new issue