From be6d82201ef88401e9b5fb36aa571dbc2d06bc9c Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Sun, 6 Jul 2014 10:51:42 -0700 Subject: [PATCH] Added job-undelay stat calls to the Redis queue class Change-Id: I28f979ff6b95e09af832f8daaa6bd7bb15c2cb6b --- includes/jobqueue/JobQueueRedis.php | 1 + 1 file changed, 1 insertion(+) 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 ); -- 2.20.1