提交 32b5410a 编写于 作者: A antirez

Cluster: add currentEpoch to CLUSTER INFO.

上级 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% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册