Skip to content

Commit

Permalink
Merge pull request #16171 from smarterclayton/interrupt_abrt
Browse files Browse the repository at this point in the history
prow/interrupts: Do not handle the ABRT signal
  • Loading branch information
k8s-ci-robot authored Feb 6, 2020
2 parents f8aaa20 + 0125deb commit 93acd94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prow/interrupts/interrupts.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ var signalsLock = sync.Mutex{}
// signals allows for injection of mock signals in testing
var signals = func() <-chan os.Signal {
sig := make(chan os.Signal, 1)
signal.Notify(sig, os.Interrupt, syscall.SIGTERM, syscall.SIGABRT)
signal.Notify(sig, os.Interrupt, syscall.SIGTERM)
return sig
}

Expand Down

0 comments on commit 93acd94

Please sign in to comment.