mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-02 21:59:00 +02:00
Only pass through keys to redis that are explicitly set in the config
This commit is contained in:
@@ -113,8 +113,11 @@ module.exports =
|
||||
rclient = new Redis.Cluster(config.cluster)
|
||||
driver = "ioredis"
|
||||
else
|
||||
{host, port, password, endpoints, masterName} = config
|
||||
rclient = require("redis-sharelatex").createClient({host, port, password, endpoints, masterName})
|
||||
redis_config = {}
|
||||
for key in ["host", "port", "password", "endpoints", "masterName"]
|
||||
if config[key]?
|
||||
redis_config[key] = config[key]
|
||||
rclient = require("redis-sharelatex").createClient(redis_config)
|
||||
driver = "redis"
|
||||
return {
|
||||
rclient: rclient
|
||||
|
||||
Reference in New Issue
Block a user