summary refs log tree commit diff
path: root/synapse/config/redis.py
diff options
context:
space:
mode:
Diffstat (limited to 'synapse/config/redis.py')
-rw-r--r--synapse/config/redis.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/config/redis.py b/synapse/config/redis.py
index 636cb450b8..3c4c499e22 100644
--- a/synapse/config/redis.py
+++ b/synapse/config/redis.py
@@ -33,6 +33,7 @@ class RedisConfig(Config):
 
         self.redis_host = redis_config.get("host", "localhost")
         self.redis_port = redis_config.get("port", 6379)
+        self.redis_path = redis_config.get("path", None)
         self.redis_dbid = redis_config.get("dbid", None)
         self.redis_password = redis_config.get("password")