diff options
author | Valentin Rothberg <rothberg@redhat.com> | 2021-06-25 11:15:34 +0200 |
---|---|---|
committer | Valentin Rothberg <rothberg@redhat.com> | 2021-07-13 13:52:46 +0200 |
commit | 6fcf0b2f3238a6f1fc0131e14f3a8125a903e218 (patch) | |
tree | 0338fadbd449a7c1816b4e25b247209a85b0ee35 /pkg/domain/infra/abi/auto-update.go | |
parent | a90a4ec7c6be5bd293d22f562bf5f975e65c2990 (diff) | |
download | podman-6fcf0b2f3238a6f1fc0131e14f3a8125a903e218.tar.gz podman-6fcf0b2f3238a6f1fc0131e14f3a8125a903e218.tar.bz2 podman-6fcf0b2f3238a6f1fc0131e14f3a8125a903e218.zip |
auto update: minor style nits
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'pkg/domain/infra/abi/auto-update.go')
-rw-r--r-- | pkg/domain/infra/abi/auto-update.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pkg/domain/infra/abi/auto-update.go b/pkg/domain/infra/abi/auto-update.go index 0ae1b5198..b9af4c92c 100644 --- a/pkg/domain/infra/abi/auto-update.go +++ b/pkg/domain/infra/abi/auto-update.go @@ -12,6 +12,5 @@ func (ic *ContainerEngine) AutoUpdate(ctx context.Context, options entities.Auto // them in the entities package as low-level packages must not leak // into the remote client. autoOpts := autoupdate.Options{Authfile: options.Authfile} - units, failures := autoupdate.AutoUpdate(ctx, ic.Libpod, autoOpts) - return &entities.AutoUpdateReport{Units: units}, failures + return autoupdate.AutoUpdate(ctx, ic.Libpod, autoOpts) } |