1
0
Fork 0
mirror of synced 2024-09-30 09:07:25 +13:00

fix redis auth for hosts containing redis

This commit is contained in:
Martin McKeaveney 2021-09-10 10:08:13 +01:00
parent 2fc7438f21
commit 0d88af0335

View file

@ -18,12 +18,12 @@ exports.Databases = {
exports.SEPARATOR = SEPARATOR
exports.getRedisOptions = (clustered = false) => {
const [host, port] = REDIS_URL.split(":")
const [host, port, ...rest] = REDIS_URL.split(":")
let redisProtocolUrl
// fully qualified redis URL
if (/rediss?/.test(host)) {
if (rest.length && /rediss?/.test(host)) {
redisProtocolUrl = REDIS_URL
}