From 3e325ecec91d8610c719218e11fbe2dae6d2bc6d Mon Sep 17 00:00:00 2001 From: Byron Jones Date: Wed, 9 Jan 2013 12:13:12 +0800 Subject: Bug 827808: increase the non-production sizelimit to 600_000 --- 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 8febe2f04..88b5c7d7e 100644 --- a/mod_perl.pl +++ b/mod_perl.pl @@ -64,7 +64,7 @@ use Apache2::SizeLimit; if (Bugzilla->params->{'urlbase'} eq 'https://bugzilla.mozilla.org/') { Apache2::SizeLimit->set_max_unshared_size(1_600_000); } else { - Apache2::SizeLimit->set_max_unshared_size(100_000); + Apache2::SizeLimit->set_max_unshared_size(600_000); } my $cgi_path = Bugzilla::Constants::bz_locations()->{'cgi_path'}; -- cgit v1.2.3-24-g4f1b