summaryrefslogtreecommitdiff
path: root/pkg/bindings
diff options
context:
space:
mode:
authorQi Wang <qiwan@redhat.com>2020-05-21 16:17:06 -0400
committerQi Wang <qiwan@redhat.com>2020-05-21 16:17:39 -0400
commitf7dd915acccd42208edb2d7630f8f3dd48c7ec10 (patch)
treef979a00f3319ae2fb7776b80e9eb258fe8767588 /pkg/bindings
parentf6aa620b05a057ca8fb9631b66313c6220de50c2 (diff)
downloadpodman-f7dd915acccd42208edb2d7630f8f3dd48c7ec10.tar.gz
podman-f7dd915acccd42208edb2d7630f8f3dd48c7ec10.tar.bz2
podman-f7dd915acccd42208edb2d7630f8f3dd48c7ec10.zip
remote manifest test
Enable remove manifest tests. Skip --purge test because remote does not support it. Signed-off-by: Qi Wang <qiwan@redhat.com>
Diffstat (limited to 'pkg/bindings')
-rw-r--r--pkg/bindings/manifests/manifests.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg/bindings/manifests/manifests.go b/pkg/bindings/manifests/manifests.go
index 3e0ef0325..f5ee31d93 100644
--- a/pkg/bindings/manifests/manifests.go
+++ b/pkg/bindings/manifests/manifests.go
@@ -112,17 +112,17 @@ func Push(ctx context.Context, name string, destination *string, all *bool) (str
params := url.Values{}
params.Set("image", name)
if destination != nil {
- dest = name
+ dest = *destination
}
params.Set("destination", dest)
if all != nil {
params.Set("all", strconv.FormatBool(*all))
}
- response, err := conn.DoRequest(nil, http.MethodPost, "/manifests/%s/push", params, name)
+ _, err = conn.DoRequest(nil, http.MethodPost, "/manifests/%s/push", params, name)
if err != nil {
return "", err
}
- return idr.ID, response.Process(&idr)
+ return idr.ID, err
}
// There is NO annotate endpoint. this binding could never work