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/data/%7B%7B%20url_for%28%27static%27%2C%20filename=%27js/%7B%7B%20url_for%28%27user%27%2C%20userid=session.user.id%29%20%7D%7D?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,