Wait for sandbox process when waiting for root container

Closes #71

PiperOrigin-RevId: 202532762
Change-Id: I80a446ff638672ff08e6fd853cd77e28dd05d540
This commit is contained in:
Fabricio Voznika
2018-06-28 13:23:04 -07:00
committed by Shentubot
parent 1ceed49ba9
commit bb31a11903
2 changed files with 21 additions and 1 deletions
+1 -1
View File
@@ -449,7 +449,7 @@ func (c *Container) Destroy() error {
// If we are the first container in the sandbox, take the sandbox down
// as well.
if c.Sandbox != nil && c.Sandbox.ID == c.ID {
if c.Sandbox != nil && c.Sandbox.IsRootContainer(c.ID) {
if err := c.Sandbox.Destroy(); err != nil {
log.Warningf("Failed to destroy sandbox %q: %v", c.Sandbox.ID, err)
}
+20
View File
@@ -434,9 +434,29 @@ func (s *Sandbox) Wait(cid string) (syscall.WaitStatus, error) {
if err := conn.Call(boot.ContainerWait, &cid, &ws); err != nil {
return ws, fmt.Errorf("err waiting on container %q: %v", cid, err)
}
if s.IsRootContainer(cid) {
// If waiting for the root, give some time for the sandbox process to exit
// to prevent races with resources that might still be in use.
timeout := time.Now().Add(time.Second)
log.Debugf("Waiting for the sandbox process to exit")
for s.IsRunning() {
if time.Now().After(timeout) {
log.Debugf("Timeout waiting for sandbox process to exit")
break
}
time.Sleep(100 * time.Millisecond)
}
}
return ws, nil
}
// IsRootContainer returns true if the specified container ID belongs to the
// root container.
func (s *Sandbox) IsRootContainer(cid string) bool {
return s.ID == cid
}
// Stop stops the container in the sandbox.
func (s *Sandbox) Stop(cid string) error {
// TODO: This should stop the container with the given ID