Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
32b5410a
Commit
32b5410a
authored
Sep 25, 2013
by
antirez
Browse files
Cluster: add currentEpoch to CLUSTER INFO.
parent
6ec795d2
Changes
1
Show whitespace changes
Inline
Side-by-side
src/cluster.c
View file @
32b5410a
...
...
@@ -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)));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment