@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Disable rate limiting by default in general

Summary: This is still too rough to enable by default. We can turn it on for `secure.phabricator.com` and tweak it a bit first, and then release it in general with higher defaults and more sensible behavior in edge cases.

Test Plan: Loaded some pages.

Reviewers: btrahan, spicyj

Reviewed By: spicyj

Subscribers: epriestley

Differential Revision: https://secure.phabricator.com/D8736

+5 -1
+5 -1
support/PhabricatorStartup.php
··· 41 41 private static $globals = array(); 42 42 private static $capturingOutput; 43 43 private static $rawInput; 44 - private static $maximumRate = 1000; 44 + 45 + // TODO: For now, disable rate limiting entirely by default. We need to 46 + // iterate on it a bit for Conduit, some of the specific score levels, and 47 + // to deal with NAT'd offices. 48 + private static $maximumRate = 0; 45 49 46 50 47 51 /* -( Accessing Request Information )-------------------------------------- */