From 879d36a3a4dd6ef07edd09f9bcc15bc41385adec Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Fri, 19 Apr 2013 16:51:27 -0700 Subject: [PATCH] [JobQueue] Fixed numbers given to redis queue stat calls. Change-Id: Ia70e6ab947aab9ed807ea993b04647aa488fbf3d --- includes/job/JobQueueRedis.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/job/JobQueueRedis.php b/includes/job/JobQueueRedis.php index a55e9996da..f14f9fa733 100644 --- a/includes/job/JobQueueRedis.php +++ b/includes/job/JobQueueRedis.php @@ -649,8 +649,8 @@ LUA; if ( $res ) { list( $released, $abandoned, $pruned ) = $res; $count += $released + $pruned; - JobQueue::incrStats( 'job-recycle', $this->type, count( $released ) ); - JobQueue::incrStats( 'job-abandon', $this->type, count( $abandoned ) ); + JobQueue::incrStats( 'job-recycle', $this->type, $released ); + JobQueue::incrStats( 'job-abandon', $this->type, $abandoned ); } } catch ( RedisException $e ) { $this->throwRedisException( $this->server, $conn, $e ); -- 2.20.1