Merge pull request #17437 from LK4D4/put_error
Do not ignore error from driver.Put Upstream-commit: 0e1618db194388e7fe54332a7e192eb41ad9df89 Component: engine
This commit is contained in:
@@ -933,8 +933,7 @@ func (daemon *Daemon) Mount(container *Container) error {
|
||||
}
|
||||
|
||||
func (daemon *Daemon) unmount(container *Container) error {
|
||||
daemon.driver.Put(container.ID)
|
||||
return nil
|
||||
return daemon.driver.Put(container.ID)
|
||||
}
|
||||
|
||||
func (daemon *Daemon) run(c *Container, pipes *execdriver.Pipes, startCallback execdriver.DriverCallback) (execdriver.ExitStatus, error) {
|
||||
|
||||
Reference in New Issue
Block a user