From 0cc80f63c48e71e441e57e9edb6e417081baa86c Mon Sep 17 00:00:00 2001 From: Brad Jorsch Date: Wed, 14 Nov 2018 13:41:04 -0500 Subject: [PATCH] JobQueue: Actually return the value from getRootJobCacheKey() I8d94a650e accidentally left out the 'return' keyword, so the function returns null. Bug: T209429 Change-Id: Ie29c1ea5eab6ddedd0fe58010fc9cf8e3a6e2f12 --- includes/jobqueue/JobQueue.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- 2.20.1