summaryrefslogtreecommitdiff
path: root/pkg
diff options
context:
space:
mode:
authorMichael Scherer <misc@redhat.com>2021-11-16 19:07:23 +0100
committerMichael Scherer <misc@redhat.com>2021-11-16 19:56:23 +0100
commit422dc5e6931a652f0aed4013d79b6c6545df48cf (patch)
tree2ed9ad6b46fc629f26f3cec9b48be9a6ae447b67 /pkg
parentf031bd23c6f5f790dde383d542c940bfe2dfaadd (diff)
downloadpodman-422dc5e6931a652f0aed4013d79b6c6545df48cf.tar.gz
podman-422dc5e6931a652f0aed4013d79b6c6545df48cf.tar.bz2
podman-422dc5e6931a652f0aed4013d79b6c6545df48cf.zip
Change error message for compatibility with docker
Fix #12315 Signed-off-by: Michael Scherer <misc@redhat.com>
Diffstat (limited to 'pkg')
-rw-r--r--pkg/api/handlers/compat/containers_create.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/api/handlers/compat/containers_create.go b/pkg/api/handlers/compat/containers_create.go
index 1e175d664..d5abb6e44 100644
--- a/pkg/api/handlers/compat/containers_create.go
+++ b/pkg/api/handlers/compat/containers_create.go
@@ -55,7 +55,7 @@ func CreateContainer(w http.ResponseWriter, r *http.Request) {
newImage, resolvedName, err := runtime.LibimageRuntime().LookupImage(body.Config.Image, nil)
if err != nil {
if errors.Cause(err) == storage.ErrImageUnknown {
- utils.Error(w, "No such image", http.StatusNotFound, err)
+ utils.Error(w, "No such image", http.StatusNotFound, errors.Wrap(err, "No such image"))
return
}