You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-07 13:22:56 +03:00
Add MONITOR
command and special monitor command reply parsing.
This commit is contained in:
5
test.js
5
test.js
@@ -1068,7 +1068,8 @@ client.on('end', function () {
|
||||
ended = true;
|
||||
});
|
||||
|
||||
// TODO - need a better way to test auth, maybe auto-config a local Redis server?
|
||||
// TODO - need a better way to test auth, maybe auto-config a local Redis server? Sounds hard.
|
||||
// Yes, this is the real password. Please be nice, thanks.
|
||||
client4.auth("664b1b6aaf134e1ec281945a8de702a9", function (err, res) {
|
||||
if (err) {
|
||||
assert.fail(err, name);
|
||||
@@ -1091,7 +1092,7 @@ client3.on("error", function (err) {
|
||||
});
|
||||
|
||||
client.on("reconnecting", function (params) {
|
||||
console.log("reconnecting: " + util.inspect(params));
|
||||
// console.log("reconnecting: " + util.inspect(params));
|
||||
});
|
||||
|
||||
process.on('uncaughtException', function (err) {
|
||||
|
Reference in New Issue
Block a user