mirror of
https://github.com/containers/podman.git
synced 2025-08-06 19:44:14 +08:00
Fix handling of duplicate matches on id expansion
Fixes: https://github.com/containers/podman/issues/12963 [NO NEW TESTS NEEDED] I don't know how to create two containers with the same first digit of the digest, which I could them attempt to remove. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
This commit is contained in:
@ -40,10 +40,12 @@ func VolumeNotFound(w http.ResponseWriter, name string, err error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func ContainerNotFound(w http.ResponseWriter, name string, err error) {
|
func ContainerNotFound(w http.ResponseWriter, name string, err error) {
|
||||||
if errors.Cause(err) != define.ErrNoSuchCtr {
|
switch errors.Cause(err) {
|
||||||
|
case define.ErrNoSuchCtr, define.ErrCtrExists:
|
||||||
|
Error(w, http.StatusNotFound, err)
|
||||||
|
default:
|
||||||
InternalServerError(w, err)
|
InternalServerError(w, err)
|
||||||
}
|
}
|
||||||
Error(w, http.StatusNotFound, err)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func ImageNotFound(w http.ResponseWriter, name string, err error) {
|
func ImageNotFound(w http.ResponseWriter, name string, err error) {
|
||||||
|
Reference in New Issue
Block a user