Commit 341ed1d1 authored by antirez's avatar antirez
Browse files

Cluster: fix redis-trib for added configEpoch field in CLUSTER NODES.

parent 32b5410a
......@@ -118,7 +118,7 @@ class ClusterNode
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,
......
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