}
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);
};
my $current_langs = Bugzilla->request_cache->{template_current_lang} ||= [];
unshift(@$current_langs, $self->context->{bz_language});
local $is_processing = 1;
+ local $SIG{__DIE__};
+ delete $SIG{__DIE__};
+ warn "WARNING: CGI::Carp makes templates slow" if $INC{"CGI/Carp.pm"};
my $retval = $self->SUPER::process(@_);
shift @$current_langs;
return $retval;