diff options
author | Keuin <[email protected]> | 2022-09-08 18:49:01 +0800 |
---|---|---|
committer | Keuin <[email protected]> | 2022-09-08 18:49:53 +0800 |
commit | 2c029eba7c8aceee40b4a8dab32fb452fed97d9e (patch) | |
tree | 4c745c5fa4b823be9b9ab26be970211eb1a1aa67 /main.go | |
parent | 1fe452a147ed6a7e77a4d03ec4ce5fc8a4bd3d63 (diff) |
Print shutdown logs properly. Handle multiple signal channels using in one goroutine.
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 24 |
1 files changed, 13 insertions, 11 deletions
@@ -139,10 +139,7 @@ func main() { logger.Printf("Starting tasks...") wg := sync.WaitGroup{} - defer func() { - wg.Wait() - logger.Println("Stopping YABR...") - }() + ctx, cancelTasks := context.WithCancel(context.Background()) for _, task := range tasks { wg.Add(1) @@ -155,18 +152,23 @@ func main() { syscall.SIGHUP, syscall.SIGINT, syscall.SIGTERM) - go func() { - <-chSigStop - cancelTasks() - }() chSigQuit := make(chan os.Signal) signal.Notify(chSigQuit, syscall.SIGQUIT) go func() { - <-chSigQuit - os.Exit(0) + select { + case <-chSigStop: + logger.Println("Stopping all tasks...") + cancelTasks() + case <-chSigQuit: + logger.Println("Aborted.") + os.Exit(0) + } }() // block main goroutine on task goroutines - wg.Wait() + defer func() { + wg.Wait() + logger.Println("YABR is stopped.") + }() } |