Title: [214332] trunk/Websites/bugs.webkit.org
Revision
214332
Author
ddkil...@apple.com
Date
2017-03-23 19:28:33 -0700 (Thu, 23 Mar 2017)

Log Message

Fix Apache::SizeLimit unshared size limit in mod_perl.pl for bugs.webkit.org
<https://webkit.org/b/169926>

Reviewed by Brent Fulgham.

* mod_perl.pl: Update syntax for setting unshared size
limit, and bump it up another 100 Mb so children don't
respawn as quickly.

Modified Paths

Diff

Modified: trunk/Websites/bugs.webkit.org/ChangeLog (214331 => 214332)


--- trunk/Websites/bugs.webkit.org/ChangeLog	2017-03-24 01:43:02 UTC (rev 214331)
+++ trunk/Websites/bugs.webkit.org/ChangeLog	2017-03-24 02:28:33 UTC (rev 214332)
@@ -1,3 +1,14 @@
+2017-03-23  David Kilzer  <ddkil...@apple.com>
+
+        Fix Apache::SizeLimit unshared size limit in mod_perl.pl for bugs.webkit.org
+        <https://webkit.org/b/169926>
+
+        Reviewed by Brent Fulgham.
+
+        * mod_perl.pl: Update syntax for setting unshared size
+        limit, and bump it up another 100 Mb so children don't
+        respawn as quickly.
+
 2017-03-21  David Kilzer  <ddkil...@apple.com>
 
         Commit local changes for Bugzilla 5.0.3

Modified: trunk/Websites/bugs.webkit.org/mod_perl.pl (214331 => 214332)


--- trunk/Websites/bugs.webkit.org/mod_perl.pl	2017-03-24 01:43:02 UTC (rev 214331)
+++ trunk/Websites/bugs.webkit.org/mod_perl.pl	2017-03-24 02:28:33 UTC (rev 214332)
@@ -58,7 +58,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(700_000);
+$Apache2::SizeLimit::MAX_UNSHARED_SIZE = 800000;
 #endif // WEBKIT_CHANGES
 
 my $cgi_path = Bugzilla::Constants::bz_locations()->{'cgi_path'};
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to