diff options
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/DB.pm | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/Bugzilla/DB.pm b/Bugzilla/DB.pm index 616f4768e..588d5ae50 100644 --- a/Bugzilla/DB.pm +++ b/Bugzilla/DB.pm @@ -167,7 +167,20 @@ sub _handle_error { # Cut down the error string to a reasonable size $_[0] = substr($_[0], 0, 2000) . ' ... ' . substr($_[0], -2000) if length($_[0]) > 4000; - # BMO: stracktrace disabled: $_[0] = Carp::longmess($_[0]); + # BMO: stracktrace disabled: + # $_[0] = Carp::longmess($_[0]); + + # BMO: catch long running query timeouts and translate into a sane message + if ($_[0] =~ /Lost connection to MySQL server during query/) { + warn(Carp::longmess($_[0])); + $_[0] = "The database query took too long to complete and has been canceled.\n" + . "(Lost connection to MySQL server during query)"; + } + + if (Bugzilla->usage_mode == USAGE_MODE_BROWSER) { + ThrowCodeError("db_error", { err_message => $_[0] }); + } + return 0; # Now let DBI handle raising the error } |