summaryrefslogtreecommitdiffstats
path: root/mod_perl.pl
diff options
context:
space:
mode:
authorByron Jones <bjones@mozilla.com>2013-09-23 07:49:07 +0200
committerByron Jones <bjones@mozilla.com>2013-09-23 07:49:07 +0200
commitfe0d942dbac2b232146be629d91bf57b85654e97 (patch)
tree3a361c4fec3e5ea550be14d32a399dc30f3a8011 /mod_perl.pl
parentb5371ee9bbbd3ef89ad06493bf981ee18cba0f5a (diff)
downloadbugzilla-fe0d942dbac2b232146be629d91bf57b85654e97.tar.gz
bugzilla-fe0d942dbac2b232146be629d91bf57b85654e97.tar.xz
Bug 919389: increase the mod_perl sizelimit to 600_000 on production
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 455427fbf..dd092d791 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(500_000);
+ Apache2::SizeLimit->set_max_unshared_size(600_000);
} else {
Apache2::SizeLimit->set_max_unshared_size(250_000);
}