X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FDevelopmentSettings.php;h=d2f26b30c6574f9996fce2e21ab1b2ed083f18df;hb=31634739695493e929eeb6c8c1b7fd9c3f5bf826;hp=4bf00d02490a29bdf9f2a22a4cc71997595881ac;hpb=3353ced6cd3148de1549568ee9633a913fd5faab;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/DevelopmentSettings.php b/includes/DevelopmentSettings.php index 4bf00d0249..d2f26b30c6 100644 --- a/includes/DevelopmentSettings.php +++ b/includes/DevelopmentSettings.php @@ -14,7 +14,7 @@ */ /** - * Debugging: PHP + * Debugging for PHP */ // Enable showing of errors @@ -22,7 +22,7 @@ error_reporting( -1 ); ini_set( 'display_errors', 1 ); /** - * Debugging: MediaWiki + * Debugging for MediaWiki */ global $wgDevelopmentWarnings, $wgShowExceptionDetails, $wgShowHostnames, $wgDebugRawPage, $wgSQLMode, $wgCommandLineMode, $wgDebugLogFile, @@ -53,3 +53,7 @@ if ( $logDir ) { $wgDebugLogGroups['error'] = "$logDir/mw-error.log"; } unset( $logDir ); + +// Disable rate-limiting to allow integration tests to run unthrottled +// in CI and for devs locally (T225796) +$wgRateLimits = [];