diff options
author | Byron Jones <glob@mozilla.com> | 2015-02-03 09:07:11 +0100 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2015-02-03 09:07:11 +0100 |
commit | 5426a2b6d124b4d4a763db5bed7f5ba445d79c85 (patch) | |
tree | 578c4248b36f2bf2c382bae260b519ce854f86da /Bugzilla | |
parent | 205a5d3c16f45c54eac12a84bb6bc0065ff49240 (diff) | |
download | bugzilla-5426a2b6d124b4d4a763db5bed7f5ba445d79c85.tar.gz bugzilla-5426a2b6d124b4d4a763db5bed7f5ba445d79c85.tar.xz |
Bug 1128832: don't create api_tokens when pointing to the shadow_db
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Template.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Bugzilla/Template.pm b/Bugzilla/Template.pm index 9f007bb6d..17d4008f7 100644 --- a/Bugzilla/Template.pm +++ b/Bugzilla/Template.pm @@ -1040,6 +1040,8 @@ 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(); }, |