From e07246407226c1781f6f65b0bdafbaf305bf6bee Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 13 Oct 2025 20:17:40 -0500 Subject: [PATCH] add failover driver --- config/queue.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/config/queue.php b/config/queue.php index 116bd8d0..c3e850e2 100644 --- a/config/queue.php +++ b/config/queue.php @@ -72,6 +72,14 @@ return [ 'after_commit' => false, ], + 'failover' => [ + 'driver' => 'failover', + 'connections' => [ + env('QUEUE_CONNECTION', 'database'), + 'sync', + ], + ], + ], /*