From 23fb54b4a9cdedb66854b5a586754d3489641590 Mon Sep 17 00:00:00 2001 From: Dylan William Hardison Date: Wed, 27 Dec 2017 20:34:35 -0500 Subject: Bug 1427230 - Avoid loading CGI::Carp, which makes templates slow. --- Bugzilla/Sentry.pm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'Bugzilla/Sentry.pm') diff --git a/Bugzilla/Sentry.pm b/Bugzilla/Sentry.pm index 8020ef56f..0d7a9c980 100644 --- a/Bugzilla/Sentry.pm +++ b/Bugzilla/Sentry.pm @@ -358,9 +358,8 @@ sub _sentry_die_handler { } sub install_sentry_handler { - require CGI::Carp; - CGI::Carp::set_die_handler(\&_sentry_die_handler); - $main::SIG{__WARN__} = sub { + $SIG{__DIE__} = \&sentry_die_handler; + $SIG{__WARN__} = sub { return if _in_eval(); sentry_handle_error('warning', shift); }; -- cgit v1.2.3-24-g4f1b