summaryrefslogtreecommitdiffstats
path: root/mod_perl.pl
diff options
context:
space:
mode:
authorByron Jones <bjones@mozilla.com>2013-03-12 15:30:01 +0100
committerByron Jones <bjones@mozilla.com>2013-03-12 15:30:01 +0100
commitefcae3390e5004d3375cb848492e16d7641db97b (patch)
tree3eaa3af6390919bfd5999ed8363c8d6ba3e3bbd5 /mod_perl.pl
parent46499b9c50dd3283f40da1babf1d5497429afeeb (diff)
downloadbugzilla-efcae3390e5004d3375cb848492e16d7641db97b.tar.gz
bugzilla-efcae3390e5004d3375cb848492e16d7641db97b.tar.xz
Bug 849721: lower max_unshared_size to 1g
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 88b5c7d7e..2e57b09b1 100644
--- a/mod_perl.pl
+++ b/mod_perl.pl
@@ -62,7 +62,7 @@ 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_600_000);
+ Apache2::SizeLimit->set_max_unshared_size(1_000_000);
} else {
Apache2::SizeLimit->set_max_unshared_size(600_000);
}