summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2018-10-01 06:58:26 +0200
committerGitHub <noreply@github.com>2018-10-01 06:58:26 +0200
commit0cfd7cbbd50ac464360c876551cb592ea1a6bf3a (patch)
tree1c55f26873066dbf6387cf5d44e3e24da3b97e45
parented452b9533b7626250ffb0bd1d0258eaa3f853f9 (diff)
downloadbugzilla-0cfd7cbbd50ac464360c876551cb592ea1a6bf3a.tar.gz
bugzilla-0cfd7cbbd50ac464360c876551cb592ea1a6bf3a.tar.xz
fix error and bump version (#772)
-rw-r--r--Bugzilla.pm2
-rw-r--r--Bugzilla/Quantum.pm2
2 files changed, 2 insertions, 2 deletions
diff --git a/Bugzilla.pm b/Bugzilla.pm
index bd79bbc8e..6a118d808 100644
--- a/Bugzilla.pm
+++ b/Bugzilla.pm
@@ -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;
diff --git a/Bugzilla/Quantum.pm b/Bugzilla/Quantum.pm
index 3d392c47b..28fbd4bf6 100644
--- a/Bugzilla/Quantum.pm
+++ b/Bugzilla/Quantum.pm
@@ -62,7 +62,7 @@ sub startup {
sub {
Bugzilla::RNG::srand();
srand();
- try { Bugzilla->dbh->ping };
+ eval { Bugzilla->dbh->ping };
}
);