From: Brad Jorsch Date: Wed, 14 Nov 2018 18:41:04 +0000 (-0500) Subject: JobQueue: Actually return the value from getRootJobCacheKey() X-Git-Tag: 1.34.0-rc.0~3512^2 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta//%22%22?a=commitdiff_plain;h=0cc80f63c48e71e441e57e9edb6e417081baa86c;p=lhc%2Fweb%2Fwiklou.git JobQueue: Actually return the value from getRootJobCacheKey() I8d94a650e accidentally left out the 'return' keyword, so the function returns null. Bug: T209429 Change-Id: Ie29c1ea5eab6ddedd0fe58010fc9cf8e3a6e2f12 --- diff --git a/includes/jobqueue/JobQueue.php b/includes/jobqueue/JobQueue.php index 7d34f32190..3689ba4943 100644 --- a/includes/jobqueue/JobQueue.php +++ b/includes/jobqueue/JobQueue.php @@ -531,7 +531,7 @@ abstract class JobQueue { * @return string */ protected function getRootJobCacheKey( $signature ) { - $this->dupCache->makeGlobalKey( + return $this->dupCache->makeGlobalKey( 'jobqueue', $this->domain, $this->type,