diff options
author | Valentin Rothberg <vrothberg@redhat.com> | 2022-04-14 10:56:16 +0200 |
---|---|---|
committer | Valentin Rothberg <vrothberg@redhat.com> | 2022-04-14 10:58:36 +0200 |
commit | 97f93dc78e61820196f2adcc06ab8ec145ef6703 (patch) | |
tree | 396be784c2b61b0eaf2031de65fa6de870b79748 /pkg/domain/infra/tunnel | |
parent | 8586b4856fb2b3de8aed45300ce8ec324f5f6bcd (diff) | |
download | podman-97f93dc78e61820196f2adcc06ab8ec145ef6703.tar.gz podman-97f93dc78e61820196f2adcc06ab8ec145ef6703.tar.bz2 podman-97f93dc78e61820196f2adcc06ab8ec145ef6703.zip |
Revert "images --size"
This reverts commit e133a06d2f4a3e94bfbd60b647046f2f515c9c24.
@nalind found a proper fix in c/storage [1] to address the performance
issue. So we really don't need the flag anymore. Note the flag has
never made it into any release.
[1] https://github.com/containers/storage/commit/d76b3606fc9ca975bf436379f91105f0fac1555f
Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
Diffstat (limited to 'pkg/domain/infra/tunnel')
-rw-r--r-- | pkg/domain/infra/tunnel/images.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/domain/infra/tunnel/images.go b/pkg/domain/infra/tunnel/images.go index 4694189e3..18e10e8dd 100644 --- a/pkg/domain/infra/tunnel/images.go +++ b/pkg/domain/infra/tunnel/images.go @@ -38,7 +38,7 @@ func (ir *ImageEngine) List(ctx context.Context, opts entities.ImageListOptions) f := strings.Split(filter, "=") filters[f[0]] = f[1:] } - options := new(images.ListOptions).WithAll(opts.All).WithFilters(filters).WithSize(opts.Size) + options := new(images.ListOptions).WithAll(opts.All).WithFilters(filters) psImages, err := images.List(ir.ClientCtx, options) if err != nil { return nil, err |