From b4d4a6249adf315ec0ce3e9c1427d71f7db50838 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Thu, 3 Oct 2013 14:27:10 -0700 Subject: [PATCH] Added wiki ID to getCoalesceLocationInternal() Change-Id: Ia1ab1883808b669e3c3b442d860c1c562e984564 --- includes/job/JobQueueDB.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/includes/job/JobQueueDB.php b/includes/job/JobQueueDB.php index 2052fc10d9..af21bc16d1 100644 --- a/includes/job/JobQueueDB.php +++ b/includes/job/JobQueueDB.php @@ -605,7 +605,9 @@ class JobQueueDB extends JobQueue { } public function getCoalesceLocationInternal() { - return $this->cluster ? "DBCluster:{$this->cluster}" : "LBFactory:{$this->wiki}"; + return $this->cluster + ? "DBCluster:{$this->cluster}:{$this->wiki}" + : "LBFactory:{$this->wiki}"; } protected function doGetSiblingQueuesWithJobs( array $types ) { -- 2.20.1