Browse Source

adjust variable name

Taylor Otwell 6 years ago
parent
commit
c30adc88c1
2 changed files with 2 additions and 2 deletions
  1. 1 1
      .env.example
  2. 1 1
      config/queue.php

+ 1 - 1
.env.example

@@ -15,9 +15,9 @@ DB_PASSWORD=secret
 
 
 BROADCAST_DRIVER=log
 BROADCAST_DRIVER=log
 CACHE_DRIVER=file
 CACHE_DRIVER=file
+QUEUE_CONNECTION=sync
 SESSION_DRIVER=file
 SESSION_DRIVER=file
 SESSION_LIFETIME=120
 SESSION_LIFETIME=120
-QUEUE_DRIVER=sync
 
 
 REDIS_HOST=127.0.0.1
 REDIS_HOST=127.0.0.1
 REDIS_PASSWORD=null
 REDIS_PASSWORD=null

+ 1 - 1
config/queue.php

@@ -13,7 +13,7 @@ return [
     |
     |
     */
     */
 
 
-    'default' => env('QUEUE_DRIVER', 'sync'),
+    'default' => env('QUEUE_CONNECTION', 'sync'),
 
 
     /*
     /*
     |--------------------------------------------------------------------------
     |--------------------------------------------------------------------------