From b7147b778824e13a15f912fdf458bf3959d439e5 Mon Sep 17 00:00:00 2001 From: Byron Jones Date: Thu, 5 Mar 2015 12:57:51 +0800 Subject: Bug 1128853: Bugzilla shouldn't try to write API tokens into the shadow DB r=dkl,a=glob --- Bugzilla.pm | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'Bugzilla.pm') diff --git a/Bugzilla.pm b/Bugzilla.pm index 46d6182cd..6ca46f430 100644 --- a/Bugzilla.pm +++ b/Bugzilla.pm @@ -537,6 +537,11 @@ sub switch_to_main_db { return $class->dbh_main; } +sub is_shadow_db { + my $class = shift; + return $class->request_cache->{dbh} != $class->dbh_main; +} + sub fields { my ($class, $criteria) = @_; $criteria ||= {}; @@ -942,6 +947,12 @@ Switch from using the main database to using the shadow database. Change the database object to refer to the main database. +=item C + +Returns true if the currently active database is the shadow database. +Returns false if a the currently active database is the man database, or if a +shadow database is not configured or enabled. + =item C The current Parameters of Bugzilla, as a hashref. If C -- cgit v1.2.3-24-g4f1b