Unverified Commit 2478b47b authored by Salvatore Sanfilippo's avatar Salvatore Sanfilippo Committed by GitHub
Browse files

Merge pull request #6304 from dbenders/fix-issue-6141

Fix issue #6141: cluster rebalance does not support binary key
parents 6a2831c2 b27f3883
...@@ -3298,7 +3298,7 @@ static redisReply *clusterManagerMigrateKeysInReply(clusterManagerNode *source, ...@@ -3298,7 +3298,7 @@ static redisReply *clusterManagerMigrateKeysInReply(clusterManagerNode *source,
redisReply *entry = reply->element[i]; redisReply *entry = reply->element[i];
size_t idx = i + offset; size_t idx = i + offset;
assert(entry->type == REDIS_REPLY_STRING); assert(entry->type == REDIS_REPLY_STRING);
argv[idx] = (char *) sdsnew(entry->str); argv[idx] = (char *) sdsnewlen(entry->str, entry->len);
argv_len[idx] = entry->len; argv_len[idx] = entry->len;
if (dots) dots[i] = '.'; if (dots) dots[i] = '.';
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment