You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-07 13:22:56 +03:00
Send friendlier error event on stream errors.
This commit is contained in:
12
test.js
12
test.js
@@ -991,8 +991,18 @@ client.on('end', function () {
|
||||
ended = true;
|
||||
});
|
||||
|
||||
// Exit immediately on connection failure, which triggers "exit", below, which fails the test
|
||||
client.on("error", function (err) {
|
||||
console.log("Redis client connection failed: " + err.stack);
|
||||
console.error("client: " + err.stack);
|
||||
process.exit();
|
||||
});
|
||||
client2.on("error", function (err) {
|
||||
console.error("client2: " + err.stack);
|
||||
process.exit();
|
||||
});
|
||||
client3.on("error", function (err) {
|
||||
console.error("client3: " + err.stack);
|
||||
process.exit();
|
||||
});
|
||||
|
||||
client.on("reconnecting", function (msg) {
|
||||
|
Reference in New Issue
Block a user