From 7eb9bce562bd9023138def4b52b4e011ac817b9b Mon Sep 17 00:00:00 2001 From: Norman Huth Date: Sun, 25 Jan 2026 13:40:22 +0100 Subject: [PATCH] feat(queue): adjust retry strategy for jobs in Horizon config - Increase `tries` from 1 to 3 for better fault tolerance - Add exponential `backoff` intervals `[30, 60, 300]` to improve job retry behavior --- config/horizon.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/horizon.php b/config/horizon.php index 570d8f5..3256589 100644 --- a/config/horizon.php +++ b/config/horizon.php @@ -207,7 +207,8 @@ 'maxTime' => 0, 'maxJobs' => 0, 'memory' => 256, - 'tries' => 1, + 'tries' => 3, + 'backoff' => [30, 60, 300], 'timeout' => 60, 'nice' => 0, ],