From 098463b77ad46f433bd3c987e137fe216a7963ac Mon Sep 17 00:00:00 2001 From: Timo Tijhof Date: Tue, 18 Jun 2019 01:00:41 +0100 Subject: [PATCH] DevelopmentSettings: Document why wgRateLimits is disabled Follows-up 9c52f982d8. Bug: T225796 Change-Id: I6f7a75d58c61712233134a9d480ce68719d6cb6a --- includes/DevelopmentSettings.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/includes/DevelopmentSettings.php b/includes/DevelopmentSettings.php index d1bbcef80f..d2f26b30c6 100644 --- a/includes/DevelopmentSettings.php +++ b/includes/DevelopmentSettings.php @@ -54,5 +54,6 @@ if ( $logDir ) { } unset( $logDir ); -// Disable rate-limiting +// Disable rate-limiting to allow integration tests to run unthrottled +// in CI and for devs locally (T225796) $wgRateLimits = []; -- 2.20.1