diff options
author | Brent Baude <bbaude@redhat.com> | 2020-05-19 13:34:01 -0500 |
---|---|---|
committer | Brent Baude <bbaude@redhat.com> | 2020-05-20 12:56:38 -0500 |
commit | 2624c043d1b8aef69355616037ee2305298bd08a (patch) | |
tree | 0c4a979cc940618d38bf92b5d9c0d3db0a9d27a4 /pkg/bindings/images/images.go | |
parent | 4eee0d840f0af81560d89864ea64b95c9e70b18d (diff) | |
download | podman-2624c043d1b8aef69355616037ee2305298bd08a.tar.gz podman-2624c043d1b8aef69355616037ee2305298bd08a.tar.bz2 podman-2624c043d1b8aef69355616037ee2305298bd08a.zip |
Test fixes for remote integration
Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'pkg/bindings/images/images.go')
-rw-r--r-- | pkg/bindings/images/images.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/bindings/images/images.go b/pkg/bindings/images/images.go index a15ce56e5..69b9e9bbf 100644 --- a/pkg/bindings/images/images.go +++ b/pkg/bindings/images/images.go @@ -146,7 +146,7 @@ func Export(ctx context.Context, nameOrID string, w io.Writer, format *string, c _, err = io.Copy(w, response.Body) return err } - return nil + return response.Process(nil) } // Prune removes unused images from local storage. The optional filters can be used to further |