mirror of
https://github.com/fluencelabs/redis
synced 2025-06-12 16:51:22 +00:00
Merge branch 'unstable' of github.com:antirez/redis into unstable
This commit is contained in:
@ -1193,11 +1193,13 @@ void clusterCommand(redisClient *c) {
|
||||
"cluster_slots_ok:%d\r\n"
|
||||
"cluster_slots_pfail:%d\r\n"
|
||||
"cluster_slots_fail:%d\r\n"
|
||||
"cluster_known_nodes:%lu\r\n"
|
||||
, statestr[server.cluster.state],
|
||||
slots_assigned,
|
||||
slots_ok,
|
||||
slots_pfail,
|
||||
slots_fail
|
||||
slots_fail,
|
||||
dictSize(server.cluster.nodes)
|
||||
);
|
||||
addReplySds(c,sdscatprintf(sdsempty(),"$%lu\r\n",
|
||||
(unsigned long)sdslen(info)));
|
||||
|
Reference in New Issue
Block a user