1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-06 02:15:48 +03:00

console.log typo

This commit is contained in:
rick
2010-09-20 12:33:05 -07:00
parent 0b51924aa7
commit 05446cd056

View File

@@ -410,7 +410,7 @@ RedisClient.prototype.connection_gone = function () {
self.emit("reconnecting", "delay " + self.retry_delay + ", attempt " + self.attempts);
self.retry_timer = setTimeout(function () {
if (exports.debug_mode) {
console.log("Retrying conneciton...");
console.log("Retrying connection...");
}
self.retry_delay = self.retry_delay * self.retry_backoff;
self.stream.destroy();