1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-01-31 12:11:37 +01:00

Fixed redis config not being set if not using redis

This commit is contained in:
Dan Brown 2016-04-12 20:08:49 +01:00
parent d6bad01130
commit 0a8030306e

View File

@ -139,6 +139,6 @@ return [
|
*/
'redis' => $redisConfig,
'redis' => env('REDIS_SERVERS', false) ? $redisConfig : [],
];