From 887524670413292b71448bd0c67ab2b786c78b49 Mon Sep 17 00:00:00 2001 From: Byron Jones Date: Tue, 10 Mar 2015 13:13:49 +0800 Subject: Bug 1139749: backport bug 1128853 to bmo (Bugzilla shouldn't try to write API tokens into the shadow DB) --- Bugzilla/Template.pm | 2 -- 1 file changed, 2 deletions(-) (limited to 'Bugzilla/Template.pm') diff --git a/Bugzilla/Template.pm b/Bugzilla/Template.pm index 94dcdb85d..efc2b5931 100644 --- a/Bugzilla/Template.pm +++ b/Bugzilla/Template.pm @@ -1042,8 +1042,6 @@ sub create { 'get_api_token' => sub { return '' unless Bugzilla->user->id; - # BMO - hack so we don't create tokens when pointing to the shadow_db - return '' if Bugzilla->is_shadow_db; my $cache = Bugzilla->request_cache; return $cache->{api_token} //= issue_api_token(); }, -- cgit v1.2.3-24-g4f1b