signal: initialize interceptor explictly

This commit is contained in:
Joost Jager
2019-11-12 15:33:48 +01:00
parent 76c2b2cea2
commit 6c6bbdd365
2 changed files with 5 additions and 1 deletions

View File

@ -26,7 +26,8 @@ var (
shutdownChannel = make(chan struct{})
)
func init() {
// Intercept starts the interception of interrupt signals.
func Intercept() {
signalsToCatch := []os.Signal{
os.Interrupt,
os.Kill,