Skip to content

Commit 58e0e79

Browse files
authored
fix: Catch OS agnostic interrupt signal (hashicorp#755)
As per docs (https://pkg.go.dev/os/signal#hdr-Windows) os.Interrupt is an OS-agnostic "signal" as opposed to syscall.SIGINT which is Unix-only. This should enable us to catch interrupts on Windows too, therefore do more graceful shutdowns and also write CPU profile.
1 parent 58e442f commit 58e0e79

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

internal/cmd/inspect_module_command.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ func (c *InspectModuleCommand) inspect(rootPath string) error {
9898
walker.SetLogger(c.logger)
9999

100100
ctx, cancel := ictx.WithSignalCancel(context.Background(),
101-
c.logger, syscall.SIGINT, syscall.SIGTERM)
101+
c.logger, os.Interrupt, syscall.SIGTERM)
102102
defer cancel()
103103

104104
walker.EnqueuePath(rootPath)

internal/cmd/serve_command.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ func (c *ServeCommand) Run(args []string) int {
9696
}
9797

9898
ctx, cancelFunc := lsctx.WithSignalCancel(context.Background(), logger,
99-
syscall.SIGINT, syscall.SIGTERM)
99+
os.Interrupt, syscall.SIGTERM)
100100
defer cancelFunc()
101101

102102
// Setting this option as a CLI flag is deprecated

0 commit comments

Comments
 (0)