diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-04-27 20:34:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-27 20:34:39 +0200 |
commit | ccf009d22e45e9a517b65619d6d46a8d40cb3328 (patch) | |
tree | 4372cc8aae2393e13845625ac7a03e837defdc14 /pkg/api/handlers | |
parent | e90112a58c820fc20bf56727a3d1c19759ceed3e (diff) | |
parent | 6db081fc5e38df6e757da0af8e4e3c74eaa720f6 (diff) | |
download | podman-ccf009d22e45e9a517b65619d6d46a8d40cb3328.tar.gz podman-ccf009d22e45e9a517b65619d6d46a8d40cb3328.tar.bz2 podman-ccf009d22e45e9a517b65619d6d46a8d40cb3328.zip |
Merge pull request #6001 from baude/v2intload
enable load integration tests
Diffstat (limited to 'pkg/api/handlers')
-rw-r--r-- | pkg/api/handlers/libpod/images.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/api/handlers/libpod/images.go b/pkg/api/handlers/libpod/images.go index 760ab1b7c..f7be5ce9a 100644 --- a/pkg/api/handlers/libpod/images.go +++ b/pkg/api/handlers/libpod/images.go @@ -283,7 +283,7 @@ func ImagesLoad(w http.ResponseWriter, r *http.Request) { return } } - utils.WriteResponse(w, http.StatusOK, entities.ImageLoadReport{Name: loadedImage}) + utils.WriteResponse(w, http.StatusOK, entities.ImageLoadReport{Names: split}) } func ImagesImport(w http.ResponseWriter, r *http.Request) { |