mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
minor cleanup for signal handling
This commit is contained in:
parent
88cb9f3116
commit
2ba5c91547
1 changed files with 4 additions and 7 deletions
11
commands.go
11
commands.go
|
@ -1396,13 +1396,10 @@ func (cli *DockerCli) CmdRun(args ...string) error {
|
|||
signals := make(chan os.Signal, 1)
|
||||
signal.Notify(signals, syscall.SIGINT, syscall.SIGTERM)
|
||||
go func() {
|
||||
for {
|
||||
sig := <-signals
|
||||
if sig == syscall.SIGINT || sig == syscall.SIGTERM {
|
||||
fmt.Printf("\nReceived signal: %s; cleaning up\n", sig)
|
||||
if err := cli.CmdStop("-t", "4", runResult.ID); err != nil {
|
||||
fmt.Printf("failed to stop container:", err)
|
||||
}
|
||||
for sig := range signals {
|
||||
fmt.Printf("\nReceived signal: %s; cleaning up\n", sig)
|
||||
if err := cli.CmdStop("-t", "4", runResult.ID); err != nil {
|
||||
fmt.Printf("failed to stop container:", err)
|
||||
}
|
||||
}
|
||||
}()
|
||||
|
|
Loading…
Reference in a new issue