diff --git a/.env.example b/.env.example index ec44a125..27f6db4b 100644 --- a/.env.example +++ b/.env.example @@ -15,9 +15,9 @@ DB_PASSWORD=secret BROADCAST_DRIVER=log CACHE_DRIVER=file +QUEUE_CONNECTION=sync SESSION_DRIVER=file SESSION_LIFETIME=120 -QUEUE_DRIVER=sync REDIS_HOST=127.0.0.1 REDIS_PASSWORD=null diff --git a/config/queue.php b/config/queue.php index 391304f3..38326eff 100644 --- a/config/queue.php +++ b/config/queue.php @@ -13,7 +13,7 @@ return [ | */ - 'default' => env('QUEUE_DRIVER', 'sync'), + 'default' => env('QUEUE_CONNECTION', 'sync'), /* |--------------------------------------------------------------------------