summaryrefslogtreecommitdiffstats
path: root/mod_perl.pl
diff options
context:
space:
mode:
authorDave Lawrence <dlawrence@mozilla.com>2012-01-24 22:33:28 +0100
committerDave Lawrence <dlawrence@mozilla.com>2012-01-24 22:33:28 +0100
commit0ea89852dd8aea5088142b2e405d544d14ec0173 (patch)
treecfcf7a090626e1e56ecf1f9c0a3778bd49616c78 /mod_perl.pl
parent47510e5833b06b9eee37b7c2531f1693f45dcb05 (diff)
parente2a95ffbe2beb52bf3e69102b4646ddf5793d8df (diff)
downloadbugzilla-0ea89852dd8aea5088142b2e405d544d14ec0173.tar.gz
bugzilla-0ea89852dd8aea5088142b2e405d544d14ec0173.tar.xz
merged with bugzilla/4.2
Diffstat (limited to 'mod_perl.pl')
-rw-r--r--mod_perl.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/mod_perl.pl b/mod_perl.pl
index 34c2c4c26..25169a849 100644
--- a/mod_perl.pl
+++ b/mod_perl.pl
@@ -59,7 +59,8 @@ Bugzilla::CGI->compile(qw(:cgi :push));
use Apache2::SizeLimit;
# This means that every httpd child will die after processing
-# a CGI if it is taking up too much RAM.
+# a CGI if it is taking up more than 100MB of RAM all by itself,
+# not counting RAM it is sharing with the other httpd processes.
Apache2::SizeLimit->set_max_unshared_size(100_000);
my $cgi_path = Bugzilla::Constants::bz_locations()->{'cgi_path'};