From a4c94957e6d5361c673e7f4effcbcf2c7c9b4fb3 Mon Sep 17 00:00:00 2001 From: Fridrik Asmundsson Date: Sat, 27 May 2023 10:10:30 +0000 Subject: [PATCH] Update message when user hits CRTL+C to not imply handling SIGSTOP but SIGTERM/SIGKILL --- cmd/lotus-shed/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/lotus-shed/main.go b/cmd/lotus-shed/main.go index 6aebb264f..a9e06f7c0 100644 --- a/cmd/lotus-shed/main.go +++ b/cmd/lotus-shed/main.go @@ -127,7 +127,7 @@ func main() { go func() { <-c cancel() - fmt.Println("Received interrupt, stopping... Press CTRL+C again to force stop") + fmt.Println("Received interrupt, shutting down... Press CTRL+C again to force shutdown") <-c fmt.Println("Forcing stop") os.Exit(1)