From 21d97f6f10d853037142721e723034bb18f979ed Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Sun, 9 Jun 2024 23:41:14 -0600 Subject: [PATCH] Add groups queue to horizon --- config/horizon.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/config/horizon.php b/config/horizon.php index 5aa37f2fe..22d74be35 100644 --- a/config/horizon.php +++ b/config/horizon.php @@ -90,6 +90,7 @@ return [ 'redis:story' => 30, 'redis:mmo' => 30, 'redis:intbg' => 30, + 'redis:groups' => 30, ], /* @@ -173,7 +174,7 @@ return [ 'production' => [ 'supervisor-1' => [ 'connection' => 'redis', - 'queue' => ['high', 'default', 'follow', 'shared', 'inbox', 'feed', 'low', 'story', 'delete', 'mmo', 'intbg'], + 'queue' => ['high', 'default', 'follow', 'shared', 'inbox', 'feed', 'low', 'story', 'delete', 'mmo', 'intbg', 'groups'], 'balance' => env('HORIZON_BALANCE_STRATEGY', 'auto'), 'minProcesses' => env('HORIZON_MIN_PROCESSES', 1), 'maxProcesses' => env('HORIZON_MAX_PROCESSES', 20), @@ -187,7 +188,7 @@ return [ 'local' => [ 'supervisor-1' => [ 'connection' => 'redis', - 'queue' => ['high', 'default', 'follow', 'shared', 'inbox', 'feed', 'low', 'story', 'delete', 'mmo', 'intbg'], + 'queue' => ['high', 'default', 'follow', 'shared', 'inbox', 'feed', 'low', 'story', 'delete', 'mmo', 'intbg', 'groups'], 'balance' => 'auto', 'minProcesses' => 1, 'maxProcesses' => 20,