1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-17 19:41:06 +03:00

fix #1636 - handle null in multi.exec

This commit is contained in:
leibale
2021-08-02 14:08:16 -04:00
parent 169912f44c
commit 27344e9626
4 changed files with 54 additions and 19 deletions

View File

@@ -3,3 +3,9 @@ export class AbortError extends Error {
super('The command was aborted');
}
}
export class WatchError extends Error {
constructor() {
super('One (or more) of the watched keys has been changed');
}
}