summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.config/redis.config.php4
1 files 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 @@
<?php
if (getenv('REDIS_HOST')) {
- $CONFIG = array (
+ $CONFIG = array(
'memcache.distributed' => '\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'),
),
);