From a4da180a2d7ae9c396dca20e4beae7177524bf59 Mon Sep 17 00:00:00 2001 From: Dylan William Hardison Date: Fri, 26 May 2017 17:51:33 -0400 Subject: Bug 1365731 - heartbeat.cgi must check Bugzilla->has_feature("bmo") --- heartbeat.cgi | 1 + 1 file changed, 1 insertion(+) (limited to 'heartbeat.cgi') diff --git a/heartbeat.cgi b/heartbeat.cgi index e26dfe6ba..d84a4e8ea 100755 --- a/heartbeat.cgi +++ b/heartbeat.cgi @@ -30,6 +30,7 @@ my $ok = eval { die "memcached server(s) not available" unless $memcached_ok; die "mod_perl not configured?" unless $ENV{MOD_PERL}; die "BUGZILLA_UNSAFE_AUTH_DELEGATION" if $ENV{BUGZILLA_UNSAFE_AUTH_DELEGATION}; + die "missing bmo feature dependencies" unless Bugzilla->has_feature('bmo'); 1; }; warn "heartbeat error: $@" if !$ok && $@; -- cgit v1.2.3-24-g4f1b