From: Aaron Schulz Date: Mon, 2 Dec 2013 07:09:06 +0000 (-0800) Subject: Fixed key name typo X-Git-Tag: 1.31.0-rc.0~17844 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/password.php?a=commitdiff_plain;h=7bd656365fc8c348869526dc6893c58dee5ef1aa;p=lhc%2Fweb%2Fwiklou.git Fixed key name typo Change-Id: I650fa1d2eea9817c47f885d3be0465f9108fad22 --- 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