mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
daemon/kill.go: simplify if statement
Signed-off-by: Alexander Morozov <lk4d4@docker.com>
This commit is contained in:
parent
87de5fdd59
commit
fa7ec908c4
1 changed files with 2 additions and 9 deletions
|
@ -27,16 +27,9 @@ func (daemon *Daemon) ContainerKill(name string, sig uint64) error {
|
|||
|
||||
// If no signal is passed, or SIGKILL, perform regular Kill (SIGKILL + wait())
|
||||
if sig == 0 || syscall.Signal(sig) == syscall.SIGKILL {
|
||||
if err := daemon.Kill(container); err != nil {
|
||||
return err
|
||||
}
|
||||
} else {
|
||||
// Otherwise, just send the requested signal
|
||||
if err := daemon.killWithSignal(container, int(sig)); err != nil {
|
||||
return err
|
||||
}
|
||||
return daemon.Kill(container)
|
||||
}
|
||||
return nil
|
||||
return daemon.killWithSignal(container, int(sig))
|
||||
}
|
||||
|
||||
// killWithSignal sends the container the given signal. This wrapper for the
|
||||
|
|
Loading…
Add table
Reference in a new issue