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

Merge branch 'jifeng-master'

This commit is contained in:
Bryce Baril
2013-04-27 08:25:39 -07:00
2 changed files with 3 additions and 1 deletions

View File

@@ -713,7 +713,7 @@ RedisClient.prototype.send_command = function (command, args, callback) {
if (command === 'set' || command === 'setex') { if (command === 'set' || command === 'setex') {
if(args[args.length - 1] === undefined || args[args.length - 1] === null) { if(args[args.length - 1] === undefined || args[args.length - 1] === null) {
var err = new Error('send_command: ' + command + ' value must not be undefined or null'); var err = new Error('send_command: ' + command + ' value must not be undefined or null');
return callback(err); return callback && callback(err);
} }
} }

View File

@@ -1859,6 +1859,8 @@ tests.OPTIONAL_CALLBACK_UNDEFINED = function () {
client.del("op_cb2"); client.del("op_cb2");
client.set("op_cb2", "y", undefined); client.set("op_cb2", "y", undefined);
client.get("op_cb2", last(name, require_string("y", name))); client.get("op_cb2", last(name, require_string("y", name)));
client.set("op_cb_undefined", undefined, undefined);
}; };
tests.ENABLE_OFFLINE_QUEUE_TRUE = function () { tests.ENABLE_OFFLINE_QUEUE_TRUE = function () {