daemon/monitor: rm redundant if
The last check for err != nil is not needed as err is always non-nil there. Remove the check. Also, no need to explicitly define `var err error` here. Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
This commit is contained in:
parent
6392e765ac
commit
3ef7f7c650
1 changed files with 3 additions and 5 deletions
|
@ -202,15 +202,13 @@ func (daemon *Daemon) autoRemove(c *container.Container) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
var err error
|
err := daemon.ContainerRm(c.ID, &types.ContainerRmConfig{ForceRemove: true, RemoveVolume: true})
|
||||||
if err = daemon.ContainerRm(c.ID, &types.ContainerRmConfig{ForceRemove: true, RemoveVolume: true}); err == nil {
|
if err == nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if c := daemon.containers.Get(c.ID); c == nil {
|
if c := daemon.containers.Get(c.ID); c == nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if err != nil {
|
logrus.WithError(err).WithField("container", c.ID).Error("error removing container")
|
||||||
logrus.WithError(err).WithField("container", c.ID).Error("error removing container")
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue