jenkins-bot has submitted this change and it was merged. Change subject: Add throttle rules for two workshops ......................................................................
Add throttle rules for two workshops 'from' => '2015-02-26T00:00 +1:00' 'to' => '2015-02-27T00:00 +1:00' 'IP' => '195.113.132.25' 'wikis' => 'cswiki', 'commonswiki' 'limit' => 25, 'from' => '2015-02-11T13:00 +1:00', 'to' => '2015-02-11T15:00 +1:00', 'IP' => '213.99.51.130', 'wiki' => 'cawiki', 'limit' => 25, Bug: T88203 Bug: T88791 Change-Id: I53db31c06e4018529a87745ca7bdb2684fe6dff5 --- M wmf-config/throttle.php 1 file changed, 14 insertions(+), 6 deletions(-) Approvals: MarkTraceur: Looks good to me, approved jenkins-bot: Verified diff --git a/wmf-config/throttle.php b/wmf-config/throttle.php index 19d6b4f..7f26d07 100644 --- a/wmf-config/throttle.php +++ b/wmf-config/throttle.php @@ -20,12 +20,20 @@ # (default: any project) ## Add throttling definitions below. -$wmgThrottlingExceptions[] = array( // T85773 - 'from' => '2015-01-12T09:00 +2:00', - 'to' => '2015-01-12T16:00 +2:00', - 'range' => array( '31.168.96.0/20', '192.115.130.0/24' ), - 'dbname' => array( 'hewiki', 'commonswiki' ), - 'value' => 40, +$wmgThrottlingExceptions[] = array( // T88203 + 'from' => '2015-02-26T00:00 +1:00', + 'to' => '2015-02-27T00:00 +1:00', + 'IP' => array( '195.113.132.25' ), + 'dbname' => array( 'cswiki', 'commonswiki' ), + 'value' => 25, +); + +$wmgThrottlingExceptions[] = array( // T88791 + 'from' => '2015-02-11T13:00 +1:00', + 'to' => '2015-02-11T15:00 +1:00', + 'IP' => array( '213.99.51.130' ), + 'dbname' => array( 'cawiki' ), + 'value' => 25, ); ## Add throttling definitions above. -- To view, visit https://gerrit.wikimedia.org/r/187912 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: I53db31c06e4018529a87745ca7bdb2684fe6dff5 Gerrit-PatchSet: 2 Gerrit-Project: operations/mediawiki-config Gerrit-Branch: master Gerrit-Owner: Glaisher <[email protected]> Gerrit-Reviewer: MarkTraceur <[email protected]> Gerrit-Reviewer: jenkins-bot <> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
