diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2018-01-11 10:03:16 -0500 |
---|---|---|
committer | Matthew Heon <matthew.heon@gmail.com> | 2018-01-11 10:03:16 -0500 |
commit | 5bc4d1d315b69a7aff60b049434e716eaccdeb05 (patch) | |
tree | bcbc1301769c5fc13c6453e90d84bb73a700f913 /libpod | |
parent | 444afa65c5faa07d384e021a387880d0b4699203 (diff) | |
download | podman-5bc4d1d315b69a7aff60b049434e716eaccdeb05.tar.gz podman-5bc4d1d315b69a7aff60b049434e716eaccdeb05.tar.bz2 podman-5bc4d1d315b69a7aff60b049434e716eaccdeb05.zip |
Fix build error after updating CNI vendor
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Diffstat (limited to 'libpod')
-rw-r--r-- | libpod/networking.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libpod/networking.go b/libpod/networking.go index 456830708..6e82cba3f 100644 --- a/libpod/networking.go +++ b/libpod/networking.go @@ -38,7 +38,8 @@ func (r *Runtime) createNetNS(ctr *Container) (err error) { podNetwork := getPodNetwork(ctr.ID(), ctr.Name(), ctrNS.Path(), ctr.config.PortMappings) - if err := r.netPlugin.SetUpPod(podNetwork); err != nil { + _, err := r.netPlugin.SetUpPod(podNetwork) + if err != nil { return errors.Wrapf(err, "error configuring network namespace for container %s", ctr.ID()) } |