diff options
author | zhangguanzhang <zhangguanzhang@qq.com> | 2020-10-03 21:45:38 +0800 |
---|---|---|
committer | zhangguanzhang <zhangguanzhang@qq.com> | 2020-10-04 19:48:13 +0800 |
commit | 4a2c4c3989938ebc25a2d0d902aff51aaa5b6c45 (patch) | |
tree | bf312725a0e358d6c19c1424e0976f15864488d0 /pkg/domain/infra/tunnel/containers.go | |
parent | 7c12967257742063206c05f0baec517bc08cbeb6 (diff) | |
download | podman-4a2c4c3989938ebc25a2d0d902aff51aaa5b6c45.tar.gz podman-4a2c4c3989938ebc25a2d0d902aff51aaa5b6c45.tar.bz2 podman-4a2c4c3989938ebc25a2d0d902aff51aaa5b6c45.zip |
Fix podman-remote ps --ns broken
Signed-off-by: zhangguanzhang <zhangguanzhang@qq.com>
Diffstat (limited to 'pkg/domain/infra/tunnel/containers.go')
-rw-r--r-- | pkg/domain/infra/tunnel/containers.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/domain/infra/tunnel/containers.go b/pkg/domain/infra/tunnel/containers.go index 9b03503c6..194bb4b48 100644 --- a/pkg/domain/infra/tunnel/containers.go +++ b/pkg/domain/infra/tunnel/containers.go @@ -548,7 +548,7 @@ func (ic *ContainerEngine) ContainerStart(ctx context.Context, namesOrIds []stri } func (ic *ContainerEngine) ContainerList(ctx context.Context, options entities.ContainerListOptions) ([]entities.ListContainer, error) { - return containers.List(ic.ClientCxt, options.Filters, &options.All, &options.Last, &options.Size, &options.Sync) + return containers.List(ic.ClientCxt, options.Filters, &options.All, &options.Last, &options.Namespace, &options.Size, &options.Sync) } func (ic *ContainerEngine) ContainerRun(ctx context.Context, opts entities.ContainerRunOptions) (*entities.ContainerRunReport, error) { |