Commit cbcffed9 authored by antirez's avatar antirez
Browse files

Cluster: redis-trib: support @busport format in ClusterNode.

parent b841f3ad
......@@ -56,7 +56,7 @@ end
class ClusterNode
def initialize(addr)
s = addr.split(":")
s = addr.split("@")[0].split(":")
if s.length < 2
puts "Invalid IP or Port (given as #{addr}) - use IP:Port format"
exit 1
......
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