You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for bringing this to our attention. Our engineers were able to reproduce the problem and found the fix. It will likely be released next week, and we'll let you know here on the thread when it happens.
Describe the bug
With
bugsnag-go
imported the program cannot be interrupted (ie:Ctrl-C
).This was introduced in #231, specifically with this line:
This traps
SIGINT
and sends a signal to the channel, but will also disable the default handling of the signal which is to kill the program.Also note that the issue is encountered as soon as the
bugsnag-go
module is imported, the module doesn't otherwise need to be actually used.Steps to reproduce
go.mod
go.sum
Ctrl-C
Note that the program did not exit and
^C
was instead printedComment out the
bugsnag-go
import and try again, the program will exitEnvironment
The text was updated successfully, but these errors were encountered: