Skip to content

Commit

Permalink
Don't trap sigquit so that a stack trace can be forced
Browse files Browse the repository at this point in the history
  • Loading branch information
jwilder committed Jun 14, 2017
1 parent 14524ea commit b16c4dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exec.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ func runCmd(ctx context.Context, cancel context.CancelFunc, cmd string, args ...

// Setup signaling
sigs := make(chan os.Signal, 1)
signal.Notify(sigs, syscall.SIGHUP, syscall.SIGINT, syscall.SIGTERM, syscall.SIGQUIT, syscall.SIGKILL)
signal.Notify(sigs, syscall.SIGHUP, syscall.SIGINT, syscall.SIGTERM, syscall.SIGKILL)

wg.Add(1)
go func() {
Expand Down

0 comments on commit b16c4dd

Please sign in to comment.