Merge pull request #4627 from matheusdtech/sigabrt

signal: do not trap SIGABRT
This commit is contained in:
Olaoluwa Osuntokun 2020-11-03 17:25:16 -08:00 committed by GitHub
commit cf5c670a2b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -42,7 +42,6 @@ func Intercept() error {
signalsToCatch := []os.Signal{
os.Interrupt,
os.Kill,
syscall.SIGABRT,
syscall.SIGTERM,
syscall.SIGQUIT,
}