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
commit fb8c49479e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

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 {