]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
fix error and bump version (#772)
authorDylan William Hardison <dylan@hardison.net>
Mon, 1 Oct 2018 04:58:26 +0000 (00:58 -0400)
committerGitHub <noreply@github.com>
Mon, 1 Oct 2018 04:58:26 +0000 (00:58 -0400)
Bugzilla.pm
Bugzilla/Quantum.pm

index bd79bbc8e32237b5aa2b0bb9527cc3958004f8a6..6a118d80899f019a95d7759c8c0b49da2380db19 100644 (file)
@@ -13,7 +13,7 @@ use warnings;
 
 use Bugzilla::Logging;
 
-our $VERSION = '20180925.1';
+our $VERSION = '20180925.3';
 
 use Bugzilla::Auth;
 use Bugzilla::Auth::Persist::Cookie;
index 3d392c47b18f03fc6b6f49519fd1ab27ad324d06..28fbd4bf61d53d0db7e3cbeb1a950cd387e7d746 100644 (file)
@@ -62,7 +62,7 @@ sub startup {
         sub {
             Bugzilla::RNG::srand();
             srand();
-            try { Bugzilla->dbh->ping };
+            eval { Bugzilla->dbh->ping };
         }
     );