diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2018-06-21 11:09:17 -0400 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-06-22 19:26:46 +0000 |
commit | c3602075ec6ee535e2fbf3e4fcf2ecbd27fa22c9 (patch) | |
tree | 80330aed0ce1e21103307be4dd6d1d7afeb49c14 /libpod/container_api.go | |
parent | d2f981fd0babda31c89ac031dabc671d76b8f25a (diff) | |
download | podman-c3602075ec6ee535e2fbf3e4fcf2ecbd27fa22c9.tar.gz podman-c3602075ec6ee535e2fbf3e4fcf2ecbd27fa22c9.tar.bz2 podman-c3602075ec6ee535e2fbf3e4fcf2ecbd27fa22c9.zip |
Make CGroups cleanup optional on whether they exist
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Closes: #981
Approved by: baude
Diffstat (limited to 'libpod/container_api.go')
-rw-r--r-- | libpod/container_api.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libpod/container_api.go b/libpod/container_api.go index d181af2a8..f4613534c 100644 --- a/libpod/container_api.go +++ b/libpod/container_api.go @@ -805,6 +805,8 @@ func (c *Container) Refresh(ctx context.Context) error { return err } + logrus.Debugf("Resetting state of container %s", c.ID()) + // We've finished unwinding the container back to its initial state // Now safe to refresh container state if err := resetState(c.state); err != nil { |