summaryrefslogtreecommitdiffstats
path: root/mod_perl.pl
diff options
context:
space:
mode:
authorByron Jones <glob@mozilla.com>2012-01-12 00:10:54 +0100
committerDave Lawrence <dlawrence@mozilla.com>2012-01-12 00:10:54 +0100
commit943619d811acc82800a916b38905c0d5846e74fe (patch)
treeeef2c35664e680098924defd1eb85645318ae836 /mod_perl.pl
parentc39392747857dae64e90e174af7393e002dafad1 (diff)
downloadbugzilla-943619d811acc82800a916b38905c0d5846e74fe.tar.gz
bugzilla-943619d811acc82800a916b38905c0d5846e74fe.tar.xz
Bug 713213: bump up max_unshared_size to 100,000
Diffstat (limited to 'mod_perl.pl')
-rw-r--r--mod_perl.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/mod_perl.pl b/mod_perl.pl
index 0a753078e..34c2c4c26 100644
--- a/mod_perl.pl
+++ b/mod_perl.pl
@@ -59,8 +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 more than 70MB of RAM all by itself.
-Apache2::SizeLimit->set_max_unshared_size(70_000);
+# a CGI if it is taking up too much RAM.
+Apache2::SizeLimit->set_max_unshared_size(100_000);
my $cgi_path = Bugzilla::Constants::bz_locations()->{'cgi_path'};