git-hulk opened a new pull request, #1928: URL: https://github.com/apache/kvrocks/pull/1928
Currently, Kvrocks cluster mode returns a MOVED/TRYAGAIN error message with the 'ERR' prefix, which will cause the Redis client can't recognize the redirection message. To make it compatible with the Redis client, we should remove this prefix. Before this patch, Kvrocks will return a MOVED error message: ``` > redis-cli -p 30001 -c set a 1 (error) ERR MOVED 15495 127.0.0.1:30005 ``` After applying this patch, it works well with redis-cli redirection: ``` > redis-cli -p 30001 -c set a 1 OK ``` This close #1922 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
