mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-22 16:18:28 -05:00
assert_empty in redis-trib
This commit is contained in:
parent
8c4c50906c
commit
f29d1fb0b2
@ -43,6 +43,14 @@ class ClusterNode
|
||||
end
|
||||
end
|
||||
|
||||
def assert_empty
|
||||
if !(@r.cluster("info").split("\r\n").index("cluster_known_nodes:1")) ||
|
||||
(@r.info['db0'])
|
||||
puts "Error: Node #{self} is not empty. Either the node already knows other nodes (check with nodes-info) or contains some key in database 0."
|
||||
exit 1
|
||||
end
|
||||
end
|
||||
|
||||
def r
|
||||
@r
|
||||
end
|
||||
@ -63,7 +71,7 @@ class RedisTrib
|
||||
node = ClusterNode.new(n)
|
||||
node.connect
|
||||
node.assert_cluster
|
||||
# node.assert_empty
|
||||
node.assert_empty
|
||||
}
|
||||
end
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user