1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-07 13:22:56 +03:00

Another version bump because 0.8.1 didn't get applied properly for some mysterious reason.

Sorry about that.

Changed name of "faster" parser to "javascript".
This commit is contained in:
Matt Ranney
2012-11-02 14:17:53 -07:00
parent de21203c51
commit f367b8a03c
3 changed files with 12 additions and 5 deletions

View File

@@ -6,7 +6,7 @@ function Packet(type, size) {
this.size = +size;
}
exports.name = "faster";
exports.name = "javascript";
exports.debug_mode = false;
function ReplyParser(options) {
@@ -192,7 +192,7 @@ ReplyParser.prototype.execute = function (buffer) {
// check the state for what is the result of
// a -1, set it back up for a null reply
if (ret === undefined) {
ret = null;
ret = null;
}
this.send_reply(ret);