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

Merge pull request #303 from mowaken/master

fixed RedisClient.prototype.end()
This commit is contained in:
Matt Ranney
2012-11-02 15:01:53 -07:00

View File

@@ -826,6 +826,7 @@ RedisClient.prototype.end = function () {
this.stream._events = {}; this.stream._events = {};
this.connected = false; this.connected = false;
this.ready = false; this.ready = false;
this.closing = true;
return this.stream.end(); return this.stream.end();
}; };