Merge pull request #5052 from mheon/cleanup_net_on_restart

Tear down network when restarting containers
This commit is contained in:
OpenShift Merge Robot
2020-02-05 00:59:07 -08:00
committed by GitHub

View File

@ -1254,6 +1254,12 @@ func (c *Container) restartWithTimeout(ctx context.Context, timeout uint) (err e
}
}
}
// Ensure we tear down the container network so it will be
// recreated - otherwise, behavior of restart differs from stop
// and start
if err := c.cleanupNetwork(); err != nil {
return err
}
}
defer func() {
if err != nil {