diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-12-14 20:56:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-14 20:56:55 +0100 |
commit | c36fb8b1138b112ec3d53e5cf89a2fbcb12e6840 (patch) | |
tree | d81ca6337af0e83f6bfc127c1296103a47f95046 /pkg/domain/infra/abi/pods.go | |
parent | a0894b5ecd6c64d30b82a7b79bc1e2e87c7f0a4e (diff) | |
parent | 888c778ee975b449aef6dec6bbdfb029a7fe385e (diff) | |
download | podman-c36fb8b1138b112ec3d53e5cf89a2fbcb12e6840.tar.gz podman-c36fb8b1138b112ec3d53e5cf89a2fbcb12e6840.tar.bz2 podman-c36fb8b1138b112ec3d53e5cf89a2fbcb12e6840.zip |
Merge pull request #12595 from Luap99/network-id
fix network id handling
Diffstat (limited to 'pkg/domain/infra/abi/pods.go')
-rw-r--r-- | pkg/domain/infra/abi/pods.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/domain/infra/abi/pods.go b/pkg/domain/infra/abi/pods.go index 028de9e81..fc0a2337c 100644 --- a/pkg/domain/infra/abi/pods.go +++ b/pkg/domain/infra/abi/pods.go @@ -325,7 +325,7 @@ func (ic *ContainerEngine) PodPs(ctx context.Context, options entities.PodPSOpti filters := make([]libpod.PodFilter, 0, len(options.Filters)) for k, v := range options.Filters { - f, err := dfilters.GeneratePodFilterFunc(k, v) + f, err := dfilters.GeneratePodFilterFunc(k, v, ic.Libpod) if err != nil { return nil, err } |