From 0a8030306e9b3c3e8c34222f5503cd8e82e83ea3 Mon Sep 17 00:00:00 2001 From: Dan Brown Date: Tue, 12 Apr 2016 20:08:49 +0100 Subject: [PATCH] Fixed redis config not being set if not using redis --- config/database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/database.php b/config/database.php index 20d461fc9..e4d6880c7 100644 --- a/config/database.php +++ b/config/database.php @@ -139,6 +139,6 @@ return [ | */ - 'redis' => $redisConfig, + 'redis' => env('REDIS_SERVERS', false) ? $redisConfig : [], ];