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-03-07 14:25:52 -0500
committerGitHub <noreply@github.com>2021-03-07 14:25:52 -0500
commitb7c00f2cc03499d5d385a7aa7e8cd35d0ab994d7 (patch)
tree34c26d2853a0f231cb93d0b451326f894ae986d0 /pkg/api/handlers/libpod/images.go
parent4174b06a4b45b94cdd35a1f4b4d142266cd9cb78 (diff)
parent9fc29f63e0dedea0dbe03e5baf012b6bf5ab51b9 (diff)
downloadpodman-b7c00f2cc03499d5d385a7aa7e8cd35d0ab994d7.tar.gz
podman-b7c00f2cc03499d5d385a7aa7e8cd35d0ab994d7.tar.bz2
podman-b7c00f2cc03499d5d385a7aa7e8cd35d0ab994d7.zip
Merge pull request #9647 from mlegenovic/master
Compat API: Fix the response of 'push image' endpoint
Diffstat (limited to 'pkg/api/handlers/libpod/images.go')
-rw-r--r--pkg/api/handlers/libpod/images.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/api/handlers/libpod/images.go b/pkg/api/handlers/libpod/images.go
index 1a2483784..83fe23621 100644
--- a/pkg/api/handlers/libpod/images.go
+++ b/pkg/api/handlers/libpod/images.go
@@ -451,6 +451,7 @@ func PushImage(w http.ResponseWriter, r *http.Request) {
Password: password,
Format: query.Format,
All: query.All,
+ Quiet: true,
}
if _, found := r.URL.Query()["tlsVerify"]; found {
options.SkipTLSVerify = types.NewOptionalBool(!query.TLSVerify)