From 11d33f328eb99f33a42eca513b9a24ac3581daba Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Mon, 11 Sep 2023 22:39:18 +0200 Subject: [PATCH] fix: queue after commit --- config/queue.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/queue.php b/config/queue.php index 7bb782605..fb846f999 100644 --- a/config/queue.php +++ b/config/queue.php @@ -39,7 +39,7 @@ return [ 'queue' => 'long-running', 'retry_after' => 3600, 'block_for' => null, - 'after_commit' => false, + 'after_commit' => true, ], 'database' => [ 'driver' => 'database', @@ -75,7 +75,7 @@ return [ 'queue' => env('REDIS_QUEUE', 'default'), 'retry_after' => 300, 'block_for' => null, - 'after_commit' => false, + 'after_commit' => true, ], ],