From: Aaron Schulz Date: Wed, 17 Apr 2013 00:41:41 +0000 (-0700) Subject: Small doc fix to JobQueueRedis. X-Git-Tag: 1.31.0-rc.0~19980^2 X-Git-Url: https://git.cyclocoop.org/admin/?a=commitdiff_plain;h=aca92231392c9664f13358c587cbfee568a5d19d;p=lhc%2Fweb%2Fwiklou.git Small doc fix to JobQueueRedis. Change-Id: I217b3642c67338f7d45995d81e5e18887242479a --- diff --git a/includes/job/JobQueueRedis.php b/includes/job/JobQueueRedis.php index 1b22c8d7af..6947f73134 100644 --- a/includes/job/JobQueueRedis.php +++ b/includes/job/JobQueueRedis.php @@ -232,7 +232,7 @@ class JobQueueRedis extends JobQueue { * @throws RedisException */ protected function pushBlobs( RedisConnRef $conn, array $items ) { - $args = array(); // ([id, sha1, blob [, id, sha1, blob ... ] ] ) + $args = array(); // ([id, sha1, rtime, blob [, id, sha1, rtime, blob ... ] ] ) foreach ( $items as $item ) { $args[] = (string)$item['uuid']; $args[] = (string)$item['sha1'];