You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-07 13:22:56 +03:00
Partial fix for null multi bulk response.
This commit is contained in:
12
test.js
12
test.js
@@ -204,6 +204,18 @@ tests.MULTI_6 = function () {
|
||||
});
|
||||
};
|
||||
|
||||
tests.WATCH_MULTI = function () {
|
||||
var name = 'WATCH_MULTI';
|
||||
|
||||
client.watch(name);
|
||||
var multi = client.multi();
|
||||
multi.incr(name);
|
||||
client.incr(name);
|
||||
multi.exec(function (err, replies) {
|
||||
next(name);
|
||||
});
|
||||
};
|
||||
|
||||
tests.HSET = function () {
|
||||
var key = "test hash",
|
||||
field1 = new Buffer("0123456789"),
|
||||
|
Reference in New Issue
Block a user