From 7bd656365fc8c348869526dc6893c58dee5ef1aa Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Sun, 1 Dec 2013 23:09:06 -0800 Subject: [PATCH] Fixed key name typo Change-Id: I650fa1d2eea9817c47f885d3be0465f9108fad22 --- includes/job/JobQueueRedis.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/job/JobQueueRedis.php b/includes/job/JobQueueRedis.php index 5c3c5e9c62..9d2a67355c 100644 --- a/includes/job/JobQueueRedis.php +++ b/includes/job/JobQueueRedis.php @@ -695,7 +695,7 @@ LUA; local attempts = redis.call('hGet',kAttempts,id) if attempts < ARGV[3] then -- Claim expired and retries left: re-enqueue the job - redis.call('lPush',kUclaimed,id) + redis.call('lPush',kUnclaimed,id) redis.call('hIncrBy',kAttempts,id,1) released = released + 1 else -- 2.20.1