Commit 32b5410a authored by antirez's avatar antirez
Browse files

Cluster: add currentEpoch to CLUSTER INFO.

parent 6ec795d2
......@@ -2393,13 +2393,15 @@ void clusterCommand(redisClient *c) {
"cluster_slots_fail:%d\r\n"
"cluster_known_nodes:%lu\r\n"
"cluster_size:%d\r\n"
"cluster_current_epoch:%llu\r\n"
, statestr[server.cluster->state],
slots_assigned,
slots_ok,
slots_pfail,
slots_fail,
dictSize(server.cluster->nodes),
server.cluster->size
server.cluster->size,
(unsigned long long) server.cluster->currentEpoch
);
addReplySds(c,sdscatprintf(sdsempty(),"$%lu\r\n",
(unsigned long)sdslen(info)));
......
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