1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-06 02:15:48 +03:00

Fix error messages not being visible in the stack trace of AbortErrors

This commit is contained in:
Ruben Bridgewater
2017-03-09 19:13:04 -03:00
parent e4ce21e12c
commit a2255d7fe2
3 changed files with 22 additions and 7 deletions

View File

@@ -1087,6 +1087,8 @@ exports.RedisClient = RedisClient;
exports.print = utils.print;
exports.Multi = require('./lib/multi');
exports.AbortError = errorClasses.AbortError;
exports.RedisError = Parser.RedisError;
exports.ParserError = Parser.ParserError;
exports.ReplyError = Parser.ReplyError;
exports.AggregateError = errorClasses.AggregateError;