diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-04-09 17:46:28 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-09 17:46:28 -0700 |
commit | 60ef8f8da90ec5200e62b79b24324fefde2c7036 (patch) | |
tree | ec403dcd9b0b80d188e400a18d432539b67faf28 /libpod/oci.go | |
parent | 40a1df38d1b6971dd1df9e06bf190c924dbad5a3 (diff) | |
parent | 09ff62429a324e01ad2c584afe9a5f66f580ae78 (diff) | |
download | podman-60ef8f8da90ec5200e62b79b24324fefde2c7036.tar.gz podman-60ef8f8da90ec5200e62b79b24324fefde2c7036.tar.bz2 podman-60ef8f8da90ec5200e62b79b24324fefde2c7036.zip |
Merge pull request #2663 from jwhonce/wip/remote_umount
Implement podman-remote umount and rm command
Diffstat (limited to 'libpod/oci.go')
-rw-r--r-- | libpod/oci.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libpod/oci.go b/libpod/oci.go index 62331b879..189359753 100644 --- a/libpod/oci.go +++ b/libpod/oci.go @@ -143,6 +143,7 @@ func waitContainerStop(ctr *Container, timeout time.Duration) error { return nil case <-time.After(timeout): close(chControl) + logrus.Debugf("container %s did not die within timeout %d", ctr.ID(), timeout) return errors.Errorf("container %s did not die within timeout", ctr.ID()) } } |