Support endpoints and masterName in redis config

This commit is contained in:
James Allen 2016-06-17 14:05:54 +01:00
parent e5cf856ddf
commit 40b7da8edb

View file

@ -113,8 +113,8 @@ module.exports =
rclient = new Redis.Cluster(config.cluster)
driver = "ioredis"
else
{host, port, password} = config
rclient = require("redis-sharelatex").createClient({host, port, password})
{host, port, password, endpoints, masterName} = config
rclient = require("redis-sharelatex").createClient({host, port, password, endpoints, masterName})
driver = "redis"
return {
rclient: rclient