summaryrefslogtreecommitdiffstats
path: root/heartbeat.cgi
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2017-05-02 01:27:04 +0200
committerDylan William Hardison <dylan@hardison.net>2017-05-02 01:27:22 +0200
commite6423e215ca33695d93dcae2a9151b064052f145 (patch)
tree2fe1563c40e77b053b373cf51d4c72f08d5901b1 /heartbeat.cgi
parentdd4b9121d8b3703ac601d88ff5a7d2977ed3600c (diff)
downloadbugzilla-e6423e215ca33695d93dcae2a9151b064052f145.tar.gz
bugzilla-e6423e215ca33695d93dcae2a9151b064052f145.tar.xz
Bug 1312735 - allow http auth delegation callbacks based on environmental variable
Diffstat (limited to 'heartbeat.cgi')
-rw-r--r--heartbeat.cgi1
1 files changed, 1 insertions, 0 deletions
diff --git a/heartbeat.cgi b/heartbeat.cgi
index 47f3d59a2..e26dfe6ba 100644
--- a/heartbeat.cgi
+++ b/heartbeat.cgi
@@ -29,6 +29,7 @@ my $ok = eval {
die "database not available" unless $database_ok;
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};
1;
};
warn "heartbeat error: $@" if !$ok && $@;