From a85d121c1adf9280d76b115b2eaae0b1eae67c9b Mon Sep 17 00:00:00 2001 From: Byron Jones Date: Wed, 5 Mar 2014 13:26:38 +0800 Subject: Bug 979727: increase the mod_perl sizelimit to 700_000 on production --- mod_perl.pl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'mod_perl.pl') diff --git a/mod_perl.pl b/mod_perl.pl index dd092d791..5840351f4 100644 --- a/mod_perl.pl +++ b/mod_perl.pl @@ -58,11 +58,11 @@ BEGIN { *CORE::GLOBAL::warn = \&Apache2::ServerRec::warn; } 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 1600MB of RAM all by itself, -# not counting RAM it is sharing with the other httpd processes. +# This means that every httpd child will die after processing a request if it +# is taking up more than 700MB 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(600_000); + Apache2::SizeLimit->set_max_unshared_size(700_000); } else { Apache2::SizeLimit->set_max_unshared_size(250_000); } -- cgit v1.2.3-24-g4f1b