summaryrefslogtreecommitdiff
path: root/pkg/bindings/images
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-09-21 16:20:30 -0400
committerGitHub <noreply@github.com>2020-09-21 16:20:30 -0400
commitd308312fa8101fd843dd6855ee4406b1c4f012ec (patch)
treeb9555a977186f18ed4692f0527ff30b52591da1e /pkg/bindings/images
parentdc5cc4356362274325a5b4fb2ba8ce71b12544dd (diff)
parente06230c9d5768af3e480e58b8e781e81737fc0d3 (diff)
downloadpodman-d308312fa8101fd843dd6855ee4406b1c4f012ec.tar.gz
podman-d308312fa8101fd843dd6855ee4406b1c4f012ec.tar.bz2
podman-d308312fa8101fd843dd6855ee4406b1c4f012ec.zip
Merge pull request #7695 from jwhonce/issues/7686
Restore 'id' stanza in pull results
Diffstat (limited to 'pkg/bindings/images')
-rw-r--r--pkg/bindings/images/pull.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/bindings/images/pull.go b/pkg/bindings/images/pull.go
index 261a481a2..2bfbbb2ac 100644
--- a/pkg/bindings/images/pull.go
+++ b/pkg/bindings/images/pull.go
@@ -89,6 +89,7 @@ func Pull(ctx context.Context, rawImage string, options entities.ImagePullOption
mErr = multierror.Append(mErr, errors.New(report.Error))
case len(report.Images) > 0:
images = report.Images
+ case report.ID != "":
default:
return images, errors.New("failed to parse pull results stream, unexpected input")
}