From 953eae29387eb962b5e308a29f9a6d95de837ab0 Mon Sep 17 00:00:00 2001 From: Jesse Leite Date: Fri, 12 May 2023 14:39:56 -0400 Subject: [PATCH] Bring back cluster config option, as required by pusher-js v8.0. (#6174) --- config/broadcasting.php | 1 + 1 file changed, 1 insertion(+) diff --git a/config/broadcasting.php b/config/broadcasting.php index 9e4d4aa4..24104853 100644 --- a/config/broadcasting.php +++ b/config/broadcasting.php @@ -36,6 +36,7 @@ 'secret' => env('PUSHER_APP_SECRET'), 'app_id' => env('PUSHER_APP_ID'), 'options' => [ + 'cluster' => env('PUSHER_APP_CLUSTER'), 'host' => env('PUSHER_HOST') ?: 'api-'.env('PUSHER_APP_CLUSTER', 'mt1').'.pusher.com', 'port' => env('PUSHER_PORT', 443), 'scheme' => env('PUSHER_SCHEME', 'https'),