summaryrefslogtreecommitdiffstats
path: root/mod_perl.pl
diff options
context:
space:
mode:
authorByron Jones <bjones@mozilla.com>2013-03-14 17:32:09 +0100
committerByron Jones <bjones@mozilla.com>2013-03-14 17:32:09 +0100
commit31e01144e6933e84abd768adc766ff7db5d03a4e (patch)
tree32bfeb10e08af4ff7b158721e33c60eb3efd6c91 /mod_perl.pl
parent076450385bb5514ab2f4591d863960edaf9a4c5b (diff)
downloadbugzilla-31e01144e6933e84abd768adc766ff7db5d03a4e.tar.gz
bugzilla-31e01144e6933e84abd768adc766ff7db5d03a4e.tar.xz
Bug 849721: drop sizelimit down to 500_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 2e57b09b1..73ba4bd9e 100644
--- a/mod_perl.pl
+++ b/mod_perl.pl
@@ -62,9 +62,9 @@ use Apache2::SizeLimit;
# a CGI if it is taking up more than 1600MB of RAM all by itself,
# not counting RAM it is sharing with the other httpd processes.
if (Bugzilla->params->{'urlbase'} eq 'https://bugzilla.mozilla.org/') {
- Apache2::SizeLimit->set_max_unshared_size(1_000_000);
+ Apache2::SizeLimit->set_max_unshared_size(500_000);
} else {
- Apache2::SizeLimit->set_max_unshared_size(600_000);
+ Apache2::SizeLimit->set_max_unshared_size(250_000);
}
my $cgi_path = Bugzilla::Constants::bz_locations()->{'cgi_path'};