summaryrefslogtreecommitdiffstats
path: root/mod_perl.pl
diff options
context:
space:
mode:
authorDylan Hardison <dylan@mozilla.com>2016-01-27 23:47:17 +0100
committerDylan Hardison <dylan@mozilla.com>2016-01-27 23:47:55 +0100
commit8c54443dd24eb15576dd5c2ebfbc6ce174276b3c (patch)
treebef75c6b912268cba7a9730cc42ec31710cf4c4d /mod_perl.pl
parenta8512cea01b427d2af0a980b856e06e307c4c185 (diff)
downloadbugzilla-8c54443dd24eb15576dd5c2ebfbc6ce174276b3c.tar.gz
bugzilla-8c54443dd24eb15576dd5c2ebfbc6ce174276b3c.tar.xz
Bug 731589 - Move mod_perl's max_unshared size from mod_perl.pl to localconfig
r=dkl,a=dylan
Diffstat (limited to 'mod_perl.pl')
-rw-r--r--mod_perl.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/mod_perl.pl b/mod_perl.pl
index f0de2e553..032266fa2 100644
--- a/mod_perl.pl
+++ b/mod_perl.pl
@@ -55,7 +55,7 @@ use Apache2::SizeLimit;
# This means that every httpd child will die after processing
# a CGI if it is taking up more than 45MB of RAM all by itself,
# not counting RAM it is sharing with the other httpd processes.
-Apache2::SizeLimit->set_max_unshared_size(45_000);
+Apache2::SizeLimit->set_max_unshared_size(Bugzilla->localconfig->{apache_size_limit});
my $cgi_path = Bugzilla::Constants::bz_locations()->{'cgi_path'};