diff --git a/config/queue.php b/config/queue.php index 30e13e6..f531fd6 100644 --- a/config/queue.php +++ b/config/queue.php @@ -31,10 +31,11 @@ 'connections' => [ 'default' => [ - 'driver' => 'database', - 'table' => 'jobs', - 'queue' => 'default', + 'driver' => 'redis', + 'connection' => 'default', + 'queue' => env('REDIS_QUEUE', 'default'), 'retry_after' => 90, + 'block_for' => null, 'after_commit' => false, ],