From e289a270f9412f50624deea7dc46fa8b02a96a00 Mon Sep 17 00:00:00 2001 From: Alexandr Stefurishin Date: Tue, 10 Sep 2024 11:34:43 +0300 Subject: [PATCH] remove sigkill signal handling Signed-off-by: Alexandr Stefurishin --- images/sds-local-volume-scheduler-extender/src/cmd/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/sds-local-volume-scheduler-extender/src/cmd/main.go b/images/sds-local-volume-scheduler-extender/src/cmd/main.go index 2822b56c..68ced09d 100644 --- a/images/sds-local-volume-scheduler-extender/src/cmd/main.go +++ b/images/sds-local-volume-scheduler-extender/src/cmd/main.go @@ -108,7 +108,7 @@ func init() { } func main() { - ctx, _ := signal.NotifyContext(context.Background(), syscall.SIGKILL, syscall.SIGINT, syscall.SIGTERM) + ctx, _ := signal.NotifyContext(context.Background(), syscall.SIGINT, syscall.SIGTERM) if err := rootCmd.ExecuteContext(ctx); err != nil { // we expect err to be logged already