From c30adc88c1cf3f30618145c8b698734cbe03b19c Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 13 Mar 2018 13:38:47 -0500 Subject: [PATCH] adjust variable name --- .env.example | 2 +- config/queue.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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'), /* |--------------------------------------------------------------------------