X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/?a=blobdiff_plain;f=includes%2FDevelopmentSettings.php;h=d2f26b30c6574f9996fce2e21ab1b2ed083f18df;hb=02e9220745bc38b79f3ebc86df9d3b351dfeb042;hp=4bf00d02490a29bdf9f2a22a4cc71997595881ac;hpb=81c888ab8569b3f0cfdf9a5f2b937940bc0974b1;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 = [];