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

Signed-off-by: Darren Stahl <darst@microsoft.com>
This commit is contained in:
Darren Stahl 2016-06-20 16:57:08 -07:00
parent ee59c53c2f
commit 79060e8212
1 changed files with 5 additions and 0 deletions

View File

@ -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
}