summaryrefslogtreecommitdiff
path: root/pkg/api
diff options
context:
space:
mode:
authorMatej Vasek <mvasek@redhat.com>2021-09-16 00:36:13 +0200
committerMatej Vasek <mvasek@redhat.com>2021-09-16 00:37:17 +0200
commit9c091e42db6c0f03977456b167eb1d2641c3ee74 (patch)
tree09a3920ba146003f87e41b3366adf4c46c03576f /pkg/api
parent5f41ffdd194a828625b3bb6ec55ed87d2830fe58 (diff)
downloadpodman-9c091e42db6c0f03977456b167eb1d2641c3ee74.tar.gz
podman-9c091e42db6c0f03977456b167eb1d2641c3ee74.tar.bz2
podman-9c091e42db6c0f03977456b167eb1d2641c3ee74.zip
fix inverted condition
[NO TESTS NEEDED] Signed-off-by: Matej Vasek <mvasek@redhat.com>
Diffstat (limited to 'pkg/api')
-rw-r--r--pkg/api/handlers/compat/images_push.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/api/handlers/compat/images_push.go b/pkg/api/handlers/compat/images_push.go
index 07ff76819..8b6d3d56a 100644
--- a/pkg/api/handlers/compat/images_push.go
+++ b/pkg/api/handlers/compat/images_push.go
@@ -152,7 +152,7 @@ loop: // break out of for/select infinite loop
case err := <-pushErrChan:
if err != nil {
var msg string
- if errors.Cause(err) != storage.ErrImageUnknown {
+ if errors.Is(err, storage.ErrImageUnknown) {
msg = "An image does not exist locally with the tag: " + imageName
} else {
msg = err.Error()