summaryrefslogtreecommitdiff
path: root/pkg/api/handlers/libpod/images.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-06-01 22:38:03 +0200
committerGitHub <noreply@github.com>2021-06-01 22:38:03 +0200
commit24b364a230102acb8abdf5724c63153d50f03a6c (patch)
treecd82ce02f962975e4605f773df355de4367d3ff7 /pkg/api/handlers/libpod/images.go
parentce2b331fefb2ce72cb2fa93c4f3c19d25f79f2a0 (diff)
parentfb4a0c572ed1264ebb12218e8905c4845cb159c5 (diff)
downloadpodman-24b364a230102acb8abdf5724c63153d50f03a6c.tar.gz
podman-24b364a230102acb8abdf5724c63153d50f03a6c.tar.bz2
podman-24b364a230102acb8abdf5724c63153d50f03a6c.zip
Merge pull request #10486 from vrothberg/tag-digest-support
support tag@digest notation
Diffstat (limited to 'pkg/api/handlers/libpod/images.go')
-rw-r--r--pkg/api/handlers/libpod/images.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/api/handlers/libpod/images.go b/pkg/api/handlers/libpod/images.go
index a90408bfd..fc6ab4b4c 100644
--- a/pkg/api/handlers/libpod/images.go
+++ b/pkg/api/handlers/libpod/images.go
@@ -482,7 +482,7 @@ func PushImage(w http.ResponseWriter, r *http.Request) {
destination = source
}
- if _, err := utils.ParseDockerReference(destination); err != nil {
+ if err := utils.IsRegistryReference(destination); err != nil {
utils.Error(w, http.StatusText(http.StatusBadRequest), http.StatusBadRequest, err)
return
}