diff --git a/config/queue.php b/config/queue.php index 30e13e6..b8cb2e9 100644 --- a/config/queue.php +++ b/config/queue.php @@ -31,13 +31,14 @@ '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, ], - + 'sync' => [ 'driver' => 'sync', ],