mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #17437 from LK4D4/put_error
Do not ignore error from driver.Put
This commit is contained in:
commit
0e1618db19
1 changed files with 1 additions and 2 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue