From 39d70acd43def2a3284c51b9c1c2684381131f4c Mon Sep 17 00:00:00 2001 From: Stefan Probst Date: Mon, 31 Aug 2020 13:47:15 +0200 Subject: [PATCH] fix: empty redis password must be string --- .config/redis.config.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/redis.config.php b/.config/redis.config.php index 9429c901..a5fde3c7 100644 --- a/.config/redis.config.php +++ b/.config/redis.config.php @@ -1,11 +1,11 @@ '\OC\Memcache\Redis', 'memcache.locking' => '\OC\Memcache\Redis', 'redis' => array( 'host' => getenv('REDIS_HOST'), - 'password' => getenv('REDIS_HOST_PASSWORD'), + 'password' => (string) getenv('REDIS_HOST_PASSWORD'), ), );