Skip to content
This repository has been archived by the owner on Jan 2, 2023. It is now read-only.

Commit

Permalink
Make string out of peer address
Browse files Browse the repository at this point in the history
  • Loading branch information
iconara committed Aug 27, 2013
1 parent 051ac56 commit 0e085bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/cql/client/asynchronous_client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def discover_peers(seed_connections, initial_keyspace)
node_addresses = unconnected_peers.map do |row|
rpc_address = row['rpc_address'].to_s
if rpc_address == BIND_ALL_IP
row['peer']
row['peer'].to_s
else
rpc_address
end
Expand Down

0 comments on commit 0e085bf

Please sign in to comment.