From 58c6e30ce2dd65d199c0f2c3a27fef940d06c9eb Mon Sep 17 00:00:00 2001 From: Byron Jones Date: Tue, 3 Feb 2015 14:30:10 +0800 Subject: Bug 1128832: file error - recursion into 'global/header.html.tmpl' --- Bugzilla/DB.pm | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'Bugzilla/DB.pm') diff --git a/Bugzilla/DB.pm b/Bugzilla/DB.pm index 588d5ae50..842161ea2 100644 --- a/Bugzilla/DB.pm +++ b/Bugzilla/DB.pm @@ -171,15 +171,15 @@ sub _handle_error { # $_[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] }); - } + #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 } -- cgit v1.2.3-24-g4f1b