diff options
author | Dylan William Hardison <dylan@hardison.net> | 2018-07-23 17:41:14 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2018-08-04 18:25:17 +0200 |
commit | 1053e01410785b9d03ad93881d81274fc75c4dd2 (patch) | |
tree | 129b344f24683443ad4ceff88b7c25993c813780 /Bugzilla/Quantum/Plugin/Glue.pm | |
parent | c32c9f3aad0f48896d6a7c601f4f03cccce48e22 (diff) | |
download | bugzilla-1053e01410785b9d03ad93881d81274fc75c4dd2.tar.gz bugzilla-1053e01410785b9d03ad93881d81274fc75c4dd2.tar.xz |
more tidy
Diffstat (limited to 'Bugzilla/Quantum/Plugin/Glue.pm')
-rw-r--r-- | Bugzilla/Quantum/Plugin/Glue.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Bugzilla/Quantum/Plugin/Glue.pm b/Bugzilla/Quantum/Plugin/Glue.pm index f99026690..02514a0f8 100644 --- a/Bugzilla/Quantum/Plugin/Glue.pm +++ b/Bugzilla/Quantum/Plugin/Glue.pm @@ -48,7 +48,7 @@ sub register { sub { Bugzilla::RNG::srand(); srand(); - eval { Bugzilla->dbh->ping }; + try { Bugzilla->dbh->ping }; } ); @@ -69,9 +69,9 @@ sub register { Bugzilla::Extension->load_all(); if ( $app->mode ne 'development' ) { Bugzilla->preload_features(); - DEBUG("preloading templates"); + DEBUG('preloading templates'); Bugzilla->preload_templates(); - DEBUG("done preloading templates"); + DEBUG('done preloading templates'); } $app->secrets( [ Bugzilla->localconfig->{side_wide_secret} ] ); |