Only set Redis client password if password is specified
This attempts to fix a Redis connection issue when the Redis password is an empty string. See https://github.com/timvisee/send-docker-compose/issues/3#issuecomment-822885578
This commit is contained in:
parent
27e6606516
commit
1b6c5b8f97
|
@ -8,10 +8,10 @@ module.exports = function(config) {
|
|||
|
||||
//eslint-disable-next-line security/detect-non-literal-require
|
||||
const redis = require(redis_lib);
|
||||
const client = redis.createClient({
|
||||
|
||||
var client_config = {
|
||||
host: config.redis_host,
|
||||
port: config.redis_port,
|
||||
password: config.redis_password,
|
||||
retry_strategy: options => {
|
||||
if (options.total_retry_time > config.redis_retry_time) {
|
||||
client.emit('error', 'Retry time exhausted');
|
||||
|
@ -20,7 +20,10 @@ module.exports = function(config) {
|
|||
|
||||
return config.redis_retry_delay;
|
||||
}
|
||||
});
|
||||
};
|
||||
if (config.redis_password != null && config.redis_password.length > 0)
|
||||
client_config.password = config.redis_password;
|
||||
const client = redis.createClient(client_config);
|
||||
|
||||
client.ttlAsync = promisify(client.ttl);
|
||||
client.hgetallAsync = promisify(client.hgetall);
|
||||
|
|
Loading…
Reference in New Issue