diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-05-25 16:19:34 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-25 16:19:34 -0400 |
commit | 3944d8c142c59a293069fda5254e0088662b8d7b (patch) | |
tree | 7929f25201c14a9f4d5a963a905e072f86650633 /libpod/container.go | |
parent | e11feb230923a169c1e235552afa2f7bec7f0fff (diff) | |
parent | 9fcfea7643b243a3ad691daaf07fe358f85491cb (diff) | |
download | podman-3944d8c142c59a293069fda5254e0088662b8d7b.tar.gz podman-3944d8c142c59a293069fda5254e0088662b8d7b.tar.bz2 podman-3944d8c142c59a293069fda5254e0088662b8d7b.zip |
Merge pull request #14329 from mheon/fixmes_1
First batch of resolutions to FIXMEs
Diffstat (limited to 'libpod/container.go')
-rw-r--r-- | libpod/container.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libpod/container.go b/libpod/container.go index 64b4453fb..04a4ae64a 100644 --- a/libpod/container.go +++ b/libpod/container.go @@ -1331,8 +1331,7 @@ func (c *Container) getNetworkStatus() map[string]types.StatusBlock { } c.state.NetworkStatus = result _ = c.save() - // TODO remove debug for final version - logrus.Debugf("converted old network result to new result %v", result) + return result } return nil |