Changed redis polyfill to not throw an error

This commit is contained in:
Ajay Ramachandran 2020-09-15 12:16:34 -04:00
parent eaaf3b8812
commit a86dc0fc7b

View file

@ -9,10 +9,10 @@ if (config.redis) {
} else {
module.exports = {
get: (key, callback) => {
callback((true));
callback(false);
},
set: (key, value, callback) => {
callback((true));
callback(false);
}
};
}