diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-04-12 09:38:48 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-12 09:38:48 -0700 |
commit | 61fa40b25679f864db5b5b375d512a9f1264e31f (patch) | |
tree | 8986c1a4718a34129393fed8a2cfb21864b93d21 /libpod/container.go | |
parent | 6ddc67c694dc60641606955364fe23b1c38406ac (diff) | |
parent | f7951c8776cea5eeddd8838ac6a4f41f518032fd (diff) | |
download | podman-61fa40b25679f864db5b5b375d512a9f1264e31f.tar.gz podman-61fa40b25679f864db5b5b375d512a9f1264e31f.tar.bz2 podman-61fa40b25679f864db5b5b375d512a9f1264e31f.zip |
Merge pull request #2913 from mheon/get_instead_of_lookup
Use GetContainer instead of LookupContainer for full ID
Diffstat (limited to 'libpod/container.go')
-rw-r--r-- | libpod/container.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/container.go b/libpod/container.go index de4674222..4bf9a1ba9 100644 --- a/libpod/container.go +++ b/libpod/container.go @@ -614,7 +614,7 @@ func (c *Container) NewNetNS() bool { func (c *Container) PortMappings() ([]ocicni.PortMapping, error) { // First check if the container belongs to a network namespace (like a pod) if len(c.config.NetNsCtr) > 0 { - netNsCtr, err := c.runtime.LookupContainer(c.config.NetNsCtr) + netNsCtr, err := c.runtime.GetContainer(c.config.NetNsCtr) if err != nil { return nil, errors.Wrapf(err, "unable to lookup network namespace for container %s", c.ID()) } |