Merge pull request #1465 from minvs1/redis-retry-configs
Allow to set custom retry parameters
This commit is contained in:
commit
3195ee7d16
2 changed files with 12 additions and 2 deletions
|
@ -69,6 +69,16 @@ const conf = convict({
|
||||||
default: false,
|
default: false,
|
||||||
env: 'REDIS_EVENT_EXPIRE'
|
env: 'REDIS_EVENT_EXPIRE'
|
||||||
},
|
},
|
||||||
|
redis_retry_time: {
|
||||||
|
format: Number,
|
||||||
|
default: 10000,
|
||||||
|
env: 'REDIS_RETRY_TIME'
|
||||||
|
},
|
||||||
|
redis_retry_delay: {
|
||||||
|
format: Number,
|
||||||
|
default: 500,
|
||||||
|
env: 'REDIS_RETRY_DELAY'
|
||||||
|
},
|
||||||
listen_address: {
|
listen_address: {
|
||||||
format: 'ipaddress',
|
format: 'ipaddress',
|
||||||
default: '0.0.0.0',
|
default: '0.0.0.0',
|
||||||
|
|
|
@ -11,12 +11,12 @@ module.exports = function(config) {
|
||||||
const client = redis.createClient({
|
const client = redis.createClient({
|
||||||
host: config.redis_host,
|
host: config.redis_host,
|
||||||
retry_strategy: options => {
|
retry_strategy: options => {
|
||||||
if (options.total_retry_time > 10000) {
|
if (options.total_retry_time > config.redis_retry_time) {
|
||||||
client.emit('error', 'Retry time exhausted');
|
client.emit('error', 'Retry time exhausted');
|
||||||
return new Error('Retry time exhausted');
|
return new Error('Retry time exhausted');
|
||||||
}
|
}
|
||||||
|
|
||||||
return 500;
|
return config.redis_retry_delay;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue