Include job UUID in doAck() error message
authorAaron Schulz <aschulz@wikimedia.org>
Fri, 14 Aug 2015 23:47:55 +0000 (16:47 -0700)
committerAaron Schulz <aschulz@wikimedia.org>
Fri, 14 Aug 2015 23:47:55 +0000 (16:47 -0700)
Change-Id: Ib84a55bd92802684b98cc1cf06e5414bd1bd9fd6

includes/jobqueue/JobQueueRedis.php

index e021d99..a038ab5 100644 (file)
@@ -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;
                        }