From: Aaron Schulz Date: Fri, 14 Aug 2015 23:47:55 +0000 (-0700) Subject: Include job UUID in doAck() error message X-Git-Tag: 1.31.0-rc.0~10395^2 X-Git-Url: http://git.cyclocoop.org/%24href?a=commitdiff_plain;h=c551797819d56521dfcda4bffd76375f9e0a9441;p=lhc%2Fweb%2Fwiklou.git Include job UUID in doAck() error message Change-Id: Ib84a55bd92802684b98cc1cf06e5414bd1bd9fd6 --- diff --git a/includes/jobqueue/JobQueueRedis.php b/includes/jobqueue/JobQueueRedis.php index e021d99b4d..a038ab5e00 100644 --- a/includes/jobqueue/JobQueueRedis.php +++ b/includes/jobqueue/JobQueueRedis.php @@ -365,6 +365,7 @@ LUA; throw new UnexpectedValueException( "Job of type '{$job->getType()}' has no UUID." ); } + $uuid = $job->metadata['uuid']; $conn = $this->getConnection(); try { static $script = @@ -381,13 +382,13 @@ LUA; $this->getQueueKey( 'z-claimed' ), # KEYS[1] $this->getQueueKey( 'h-attempts' ), # KEYS[2] $this->getQueueKey( 'h-data' ), # KEYS[3] - $job->metadata['uuid'] # ARGV[1] + $uuid # ARGV[1] ), 3 # number of first argument(s) that are keys ); if ( !$res ) { - wfDebugLog( 'JobQueueRedis', "Could not acknowledge {$this->type} job." ); + wfDebugLog( 'JobQueueRedis', "Could not acknowledge {$this->type} job $uuid." ); return false; }