You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-06 02:15:48 +03:00
Lowering the first retry_delay and begin from that value
Earlier the first value was never used, as it was first multiplied by 1.7
This commit is contained in:
2
index.js
2
index.js
@@ -123,7 +123,7 @@ RedisClient.prototype.install_stream_listeners = function() {
|
||||
RedisClient.prototype.initialize_retry_vars = function () {
|
||||
this.retry_timer = null;
|
||||
this.retry_totaltime = 0;
|
||||
this.retry_delay = 150;
|
||||
this.retry_delay = 200;
|
||||
this.retry_backoff = 1.7;
|
||||
this.attempts = 1;
|
||||
};
|
||||
|
Reference in New Issue
Block a user