Title: [174781] trunk/Websites/bugs.webkit.org/mod_perl.pl
- Revision
- 174781
- Author
- [email protected]
- Date
- 2014-10-16 09:01:33 -0700 (Thu, 16 Oct 2014)
Log Message
Fix maximum unshared memory size of Apache processes
* mod_perl.pl: Set the maximum unshared memory size of Apache
processes to 700 MB. According to the manpage, this is the
correct way to do it in a mod_perl config file.
Modified Paths
Diff
Modified: trunk/Websites/bugs.webkit.org/mod_perl.pl (174780 => 174781)
--- trunk/Websites/bugs.webkit.org/mod_perl.pl 2014-10-16 16:01:32 UTC (rev 174780)
+++ trunk/Websites/bugs.webkit.org/mod_perl.pl 2014-10-16 16:01:33 UTC (rev 174781)
@@ -64,8 +64,7 @@
# not counting RAM it is sharing with the other httpd processes.
#if WEBKIT_CHANGES
# bugs.webkit.org children are normally about 400MB.
-#Apache2::SizeLimit->set_max_unshared_size(45_000);
-Apache2::SizeLimit->set_max_unshared_size(700_000);
+$Apache2::SizeLimit::MAX_UNSHARED_SIZE = 700000;
#endif // WEBKIT_CHANGES
my $cgi_path = Bugzilla::Constants::bz_locations()->{'cgi_path'};
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes