allow storing null in redis
This commit is contained in:
parent
faa8ab9486
commit
6acc1fc533
2 changed files with 17 additions and 1 deletions
|
@ -151,7 +151,7 @@ Redis.prototype.set = function (key, value, callback) {
|
||||||
|
|
||||||
var fullKey = nconf.key(self.namespace, key);
|
var fullKey = nconf.key(self.namespace, key);
|
||||||
|
|
||||||
if (!Array.isArray(value) && typeof value === 'object') {
|
if (!Array.isArray(value) && value !== null && typeof value === 'object') {
|
||||||
//
|
//
|
||||||
// If the value is an `Object` (and not an `Array`) then
|
// If the value is an `Object` (and not an `Array`) then
|
||||||
// nest into the value and set the child keys appropriately.
|
// nest into the value and set the child keys appropriately.
|
||||||
|
|
|
@ -37,6 +37,14 @@ vows.describe('nconf/stores/redis').addBatch({
|
||||||
"should respond without an error": function (err, ok) {
|
"should respond without an error": function (err, ok) {
|
||||||
assert.isNull(err);
|
assert.isNull(err);
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"with null": {
|
||||||
|
topic: function (store) {
|
||||||
|
store.set('falsy:object', null, this.callback);
|
||||||
|
},
|
||||||
|
"should respond without an error": function(err, ok) {
|
||||||
|
assert.isNull(err);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -75,6 +83,14 @@ vows.describe('nconf/stores/redis').addBatch({
|
||||||
"should respond with the correct value": function (err, value) {
|
"should respond with the correct value": function (err, value) {
|
||||||
assert.deepEqual(value, data.obj.auth);
|
assert.deepEqual(value, data.obj.auth);
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"with null": {
|
||||||
|
topic: function(store) {
|
||||||
|
store.get('falsy:object', this.callback);
|
||||||
|
},
|
||||||
|
"should respond with the correct value": function(err, value) {
|
||||||
|
assert.equal(value, null);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue