Exclude bots from edit stash stats

Change-Id: Id309879eaaf039de7ac5f531930fa8e758a959c7
This commit is contained in:
Aaron Schulz 2016-05-26 11:36:40 -07:00
parent 70739c2a97
commit cddfe0d98f

View file

@ -259,6 +259,10 @@ class ApiStashEdit extends ApiBase {
* @return stdClass|bool Returns false on cache miss
*/
public static function checkCache( Title $title, Content $content, User $user ) {
if ( $user->isBot() ) {
return false; // bots never stash - don't pollute stats
}
$cache = ObjectCache::getLocalClusterInstance();
$logger = LoggerFactory::getInstance( 'StashEdit' );
$stats = RequestContext::getMain()->getStats();