Skip to content

Commit

Permalink
Cluster: fix redis-trib for added configEpoch field in CLUSTER NODES.
Browse files Browse the repository at this point in the history
  • Loading branch information
antirez committed Sep 25, 2013
1 parent 32b5410 commit 341ed1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/redis-trib.rb
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def load_info(o={})
nodes.each{|n|
# name addr flags role ping_sent ping_recv link_status slots
split = n.split
name,addr,flags,role,ping_sent,ping_recv,link_status = split[0..6]
name,addr,flags,role,ping_sent,ping_recv,config_epoch,link_status = split[0..6]
slots = split[7..-1]
info = {
:name => name,
Expand Down

0 comments on commit 341ed1d

Please sign in to comment.