From 0e085bfbcb32fa20f647f34ee694d3c29f2fb7d6 Mon Sep 17 00:00:00 2001 From: Theo Date: Tue, 27 Aug 2013 13:31:03 +0200 Subject: [PATCH] Make string out of peer address --- lib/cql/client/asynchronous_client.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cql/client/asynchronous_client.rb b/lib/cql/client/asynchronous_client.rb index 6ed4bde..c2c2e17 100644 --- a/lib/cql/client/asynchronous_client.rb +++ b/lib/cql/client/asynchronous_client.rb @@ -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