frostfs-node/pkg/util/grace/grace.go

28 lines
522 B
Go
Raw Normal View History

2020-07-24 13:54:03 +00:00
package grace
import (
"context"
"os"
"os/signal"
"syscall"
"go.uber.org/zap"
)
2020-07-24 13:54:03 +00:00
// NewGracefulContext returns grace context that cancelled by sigint,
// sigterm and sighup.
func NewGracefulContext(l *zap.Logger) context.Context {
ctx, cancel := context.WithCancel(context.Background())
go func() {
ch := make(chan os.Signal, 1)
signal.Notify(ch, syscall.SIGINT, syscall.SIGTERM, syscall.SIGHUP)
sig := <-ch
l.Info("received signal",
zap.String("signal", sig.String()))
cancel()
}()
return ctx
}