From b111d5e01abc25f7db2893736a806e8f7a930664 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Thu, 12 Oct 2023 14:43:49 +0200 Subject: [PATCH] wait #6269 --- app/Fluidbook/Farm.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Fluidbook/Farm.php b/app/Fluidbook/Farm.php index 82cf2dd36..1a1bf8646 100644 --- a/app/Fluidbook/Farm.php +++ b/app/Fluidbook/Farm.php @@ -30,7 +30,7 @@ class Farm ['name' => 'isleofdogs', 'host' => 'paris.cubedesigners.com', 'port' => 9458, 'weight' => 2, 'region' => 'UE'], ['name' => 'jumanji', 'host' => 'paris.cubedesigners.com', 'port' => 9459, 'weight' => 2, 'region' => 'UE'], ['name' => 'kingkong', 'host' => 'kingkong.cubedesigners.com', 'weight' => 6, 'region' => 'US'], - ['name' => 'matrix', 'host' => 'matrix.cubedesigners.com', 'weight' => 2, 'region' => 'UE'], + //['name' => 'matrix', 'host' => 'matrix.cubedesigners.com', 'weight' => 2, 'region' => 'UE'], ]; public static function forceServer($server) @@ -196,10 +196,10 @@ class Farm if (!$res) { if ($attempts > 0) { - Log::warning('Farm failure ('.$farmer['name'].') : ' . $output); + Log::warning('Farm failure (' . $farmer['name'] . ') : ' . $output); return static::_getFile($params, $attempts - 1); } - throw new \Exception('Farm failure ('.$farmer['name'].') : ' . $output); + throw new \Exception('Farm failure (' . $farmer['name'] . ') : ' . $output); } return $res; -- 2.39.5