Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions bin/cassandra-web
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,10 @@ class CLI
when ::IPAddr
hosts << host
when ::String # ip address or hostname
Resolv.each_address(host) do |ip|
hosts << ::IPAddr.new(ip)
if !!(host =~ Resolv::IPv4::Regex)
hosts << ::IPAddr.new(host)
else
hosts << ::IPAddr.new(Resolv.getaddress(host))
end
else
raise ::ArgumentError, ":hosts must be String or IPAddr, #{host.inspect} given"
Expand Down