From c1fa559e16cbaa5e7a3133f7ea0b086ea00ba650 Mon Sep 17 00:00:00 2001 From: Byron Jones Date: Thu, 5 Mar 2015 12:57:53 +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 8e1f8886f..e27be0f7f 100644 --- a/Bugzilla.pm +++ b/Bugzilla.pm @@ -530,6 +530,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 ||= {}; @@ -935,6 +940,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.1