From 24028a59555e19d60949fb609348321940c18eaf Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Mon, 30 Sep 2024 00:59:53 -0600 Subject: [PATCH] Update horizon config, add new pushnotify queue --- config/horizon.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/config/horizon.php b/config/horizon.php index 0a4add6f8..5f7b31c13 100644 --- a/config/horizon.php +++ b/config/horizon.php @@ -93,6 +93,7 @@ return [ 'redis:adelete' => 30, 'redis:groups' => 30, 'redis:move' => 30, + 'redis:pushnotify' => 30, ], /* @@ -176,7 +177,7 @@ return [ 'production' => [ 'supervisor-1' => [ 'connection' => 'redis', - 'queue' => ['high', 'default', 'follow', 'shared', 'inbox', 'feed', 'low', 'story', 'delete', 'mmo', 'intbg', 'groups', 'adelete', 'move'], + 'queue' => ['high', 'default', 'follow', 'shared', 'inbox', 'feed', 'low', 'story', 'delete', 'mmo', 'intbg', 'groups', 'adelete', 'move', 'pushnotify'], 'balance' => env('HORIZON_BALANCE_STRATEGY', 'auto'), 'minProcesses' => env('HORIZON_MIN_PROCESSES', 1), 'maxProcesses' => env('HORIZON_MAX_PROCESSES', 20), @@ -190,7 +191,7 @@ return [ 'local' => [ 'supervisor-1' => [ 'connection' => 'redis', - 'queue' => ['high', 'default', 'follow', 'shared', 'inbox', 'feed', 'low', 'story', 'delete', 'mmo', 'intbg', 'groups', 'adelete', 'move'], + 'queue' => ['high', 'default', 'follow', 'shared', 'inbox', 'feed', 'low', 'story', 'delete', 'mmo', 'intbg', 'groups', 'adelete', 'move', 'pushnotify'], 'balance' => 'auto', 'minProcesses' => 1, 'maxProcesses' => 20,