fixed #1554, redis error handling will go back to crashing the error (though the error will be logged at least)

v1.18.x
Julian Lam 11 years ago
parent 5b17f9a7a4
commit 584fe60284

@ -65,6 +65,7 @@
redisClient.on('error', function (err) { redisClient.on('error', function (err) {
winston.error(err.stack); winston.error(err.stack);
process.exit(1);
}); });
module.client = redisClient; module.client = redisClient;

Loading…
Cancel
Save