From 25bf6df7c2986fa83e28cc8035f83bb4f693d3d6 Mon Sep 17 00:00:00 2001 From: HDVinnie Date: Thu, 11 Nov 2021 10:50:42 -0500 Subject: [PATCH] update: queue config --- config/queue.php | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/config/queue.php b/config/queue.php index d050505f8..4be61068a 100644 --- a/config/queue.php +++ b/config/queue.php @@ -60,11 +60,12 @@ return [ ], 'redis' => [ - 'driver' => 'redis', - 'connection' => 'job', - 'queue' => env('REDIS_QUEUE', 'default'), - 'retry_after' => 90, - 'block_for' => null, + 'driver' => 'redis', + 'connection' => 'job', + 'queue' => env('REDIS_QUEUE', 'default'), + 'retry_after' => 120, + 'block_for' => null, + 'after_commit' => false, ], ],