summaryrefslogtreecommitdiff
path: root/pkg/domain
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-12-02 21:35:31 +0100
committerGitHub <noreply@github.com>2020-12-02 21:35:31 +0100
commite74072e742a427fbd8577fdc98daf1133cf13c48 (patch)
treef8ecccc4764a301373e1c0780af41ac7eb238658 /pkg/domain
parentd45676549d67033364f6777765054073036cfc32 (diff)
parentf525d8b8431b13359c0e2f6c8be45687eb32a0fd (diff)
downloadpodman-e74072e742a427fbd8577fdc98daf1133cf13c48.tar.gz
podman-e74072e742a427fbd8577fdc98daf1133cf13c48.tar.bz2
podman-e74072e742a427fbd8577fdc98daf1133cf13c48.zip
Merge pull request #8112 from QiWang19/load-optional-name
Drop name argument from Load API
Diffstat (limited to 'pkg/domain')
-rw-r--r--pkg/domain/infra/abi/images.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/domain/infra/abi/images.go b/pkg/domain/infra/abi/images.go
index ef0e15264..1b523f06a 100644
--- a/pkg/domain/infra/abi/images.go
+++ b/pkg/domain/infra/abi/images.go
@@ -458,7 +458,7 @@ func (ir *ImageEngine) Load(ctx context.Context, opts entities.ImageLoadOptions)
if !opts.Quiet {
writer = os.Stderr
}
- name, err := ir.Libpod.LoadImage(ctx, opts.Name, opts.Input, writer, opts.SignaturePolicy)
+ name, err := ir.Libpod.LoadImage(ctx, opts.Input, writer, opts.SignaturePolicy)
if err != nil {
return nil, err
}