X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/8d727af8c4d309463cd463689b50ffb299b61964..d415f9ff41ed5b87de9baa7a9521431ed7d78d3c:/src/cluster.c diff --git a/src/cluster.c b/src/cluster.c index 70c34aab..4e3cf746 100644 --- a/src/cluster.c +++ b/src/cluster.c @@ -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)));