diff --git a/internal/types/idlewatcher.go b/internal/types/idlewatcher.go index e9bfa6fe..f00e02d0 100644 --- a/internal/types/idlewatcher.go +++ b/internal/types/idlewatcher.go @@ -132,7 +132,7 @@ func (c *IdlewatcherConfig) validateStopMethod() error { func (c *IdlewatcherConfig) validateStopSignal() error { switch c.StopSignal { - case "", "SIGINT", "SIGTERM", "SIGQUIT", "SIGHUP", "INT", "TERM", "QUIT", "HUP": + case "", "SIGINT", "SIGTERM", "SIGKILL", "SIGQUIT", "SIGHUP", "INT", "TERM", "KILL", "QUIT", "HUP": return nil default: return gperr.PrependSubject(ErrInvalidStopSignal, string(c.StopSignal))