Merge pull request #432 from tidwall/sighup-fix

Ignore SIGHUP signals
This commit is contained in:
Josh Baker 2019-03-12 14:47:42 -07:00 committed by GitHub
commit 394850e71a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 18 additions and 16 deletions

View File

@ -291,22 +291,24 @@ Developer Options:
signal.Notify(c, syscall.SIGHUP, syscall.SIGINT, syscall.SIGTERM, syscall.SIGQUIT)
go func() {
s := <-c
log.Warnf("signal: %v", s)
if pidfile != "" {
cleanup()
}
switch {
default:
os.Exit(-1)
case s == syscall.SIGHUP:
os.Exit(1)
case s == syscall.SIGINT:
os.Exit(2)
case s == syscall.SIGQUIT:
os.Exit(3)
case s == syscall.SIGTERM:
os.Exit(0xf)
for s := range c {
if s == syscall.SIGHUP {
continue
}
log.Warnf("signal: %v", s)
if pidfile != "" {
cleanup()
}
switch {
default:
os.Exit(-1)
case s == syscall.SIGINT:
os.Exit(2)
case s == syscall.SIGQUIT:
os.Exit(3)
case s == syscall.SIGTERM:
os.Exit(0xf)
}
}
}()