From efcae3390e5004d3375cb848492e16d7641db97b Mon Sep 17 00:00:00 2001 From: Byron Jones Date: Tue, 12 Mar 2013 22:30:01 +0800 Subject: Bug 849721: lower max_unshared_size to 1g --- mod_perl.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mod_perl.pl') 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); } -- cgit v1.2.3-24-g4f1b