From d519be0109bd679b1f340c0a45fcc00beca098c7 Mon Sep 17 00:00:00 2001 From: Dane Everitt Date: Sun, 2 Dec 2018 12:46:15 -0800 Subject: [PATCH] Use old environment variable fallback to avoid BC --- config/queue.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/queue.php b/config/queue.php index a2c253969..326a575dd 100644 --- a/config/queue.php +++ b/config/queue.php @@ -14,7 +14,7 @@ return [ | */ - 'default' => env('QUEUE_CONNECTION', 'database'), + 'default' => env('QUEUE_CONNECTION', env('QUEUE_DRIVER', 'database')), /* |--------------------------------------------------------------------------