Windows: Prevent logging errors when shutting down an already shut down container

Signed-off-by: Darren Stahl <darst@microsoft.com>
Upstream-commit: 79060e821228b9e86bbd9e9212756a61b0901c11
Component: engine
This commit is contained in:
Darren Stahl
2016-06-20 16:57:08 -07:00
parent 9b9e6d34ec
commit da68531167
@@ -274,6 +274,8 @@ func (ctr *container) shutdown() error {
if err == hcsshim.ErrVmcomputeOperationPending {
// Explicit timeout to avoid a (remote) possibility that shutdown hangs indefinitely.
err = ctr.hcsContainer.WaitTimeout(shutdownTimeout)
} else if err == hcsshim.ErrVmcomputeAlreadyStopped {
err = nil
}
if err != nil {
@@ -293,9 +295,12 @@ func (ctr *container) terminate() error {
if err == hcsshim.ErrVmcomputeOperationPending {
err = ctr.hcsContainer.WaitTimeout(terminateTimeout)
} else if err == hcsshim.ErrVmcomputeAlreadyStopped {
err = nil
}
if err != nil {
logrus.Debugf("error terminating container %s %v", ctr.containerID, err)
return err
}