Ensure node exists before being redirected via an ASK #341
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
If a master node in the Redis cluster does not have any slots, it is not returned by the
cluster slots
command, and so does not have a client in the connectionPool. If slots are migrated to this new master node, the old master node returns anASK
error with the new node details. At the moment ioredis looks up the node in the connectionPool but it doesn't exist, so the following error is returned:It looks like a similar issues with a
MOVED
reply was fixed in 0dcb768. This patch applies the same fix to theASK
error.