You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-06 02:15:48 +03:00
fix for e11256854e
- should not retry connecting if failed due to wrong auth
This commit is contained in:
@@ -33,3 +33,9 @@ export class SocketClosedUnexpectedlyError extends Error {
|
||||
super('Socket closed unexpectedly');
|
||||
}
|
||||
}
|
||||
|
||||
export class AuthError extends Error {
|
||||
constructor(message: string) {
|
||||
super(message);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user