We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
enqueueAt does not catch an error if it fails in the ioredis function inside.
This is because the format of the Promise returned by ioredis exec is different from the usual as follows. (reference)
const promise = redis.pipeline().set("foo", "bar").get("foo").exec(); promise.then((result) => { // result === [[null, 'OK'], [null, 'bar']] });
The text was updated successfully, but these errors were encountered:
Thanks for reporting this! Are you able to submit a pull request (and related test) with the fix?
Sorry, something went wrong.
I did it! (edit) #973
Successfully merging a pull request may close this issue.
enqueueAt does not catch an error if it fails in the ioredis function inside.
This is because the format of the Promise returned by ioredis exec is different from the usual as follows. (reference)
The text was updated successfully, but these errors were encountered: