From: Aaron Schulz Date: Sun, 6 Jul 2014 17:51:42 +0000 (-0700) Subject: Added job-undelay stat calls to the Redis queue class X-Git-Tag: 1.31.0-rc.0~15078 X-Git-Url: https://git.cyclocoop.org/%7B%7B%20url_for%28%27votes%27%2C%20votes=%27waiting%27%29%20%7D%7D?a=commitdiff_plain;h=be6d82201ef88401e9b5fb36aa571dbc2d06bc9c;p=lhc%2Fweb%2Fwiklou.git Added job-undelay stat calls to the Redis queue class Change-Id: I28f979ff6b95e09af832f8daaa6bd7bb15c2cb6b --- diff --git a/includes/jobqueue/JobQueueRedis.php b/includes/jobqueue/JobQueueRedis.php index 6739a84457..39fccdd990 100644 --- a/includes/jobqueue/JobQueueRedis.php +++ b/includes/jobqueue/JobQueueRedis.php @@ -703,6 +703,7 @@ LUA; $count += $released + $pruned + $undelayed; JobQueue::incrStats( 'job-recycle', $this->type, $released, $this->wiki ); JobQueue::incrStats( 'job-abandon', $this->type, $abandoned, $this->wiki ); + JobQueue::incrStats( 'job-undelay', $this->type, $undelayed, $this->wiki ); } } catch ( RedisException $e ) { $this->throwRedisException( $conn, $e );