sessionm-cassandra_object 2.5.6 → 2.5.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -99,7 +99,7 @@ module CassandraObject
99
99
  {
100
100
  :start_token => sprintf('%032x', t.start_token.to_i),
101
101
  :end_token => t.end_token.to_i == 0 ? ('f' * 32) : sprintf('%032x', t.end_token.to_i - 1),
102
- :servers => t.endpoint_details.select { |d| d.datacenter == datacenter }.map(&:host)
102
+ :servers => t.endpoint_details.select { |d| d.datacenter == datacenter }.map { |d| "#{d.host}:9160" }
103
103
  }
104
104
  end
105
105
  end
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = 'sessionm-cassandra_object'
5
- s.version = '2.5.6'
5
+ s.version = '2.5.7'
6
6
  s.description = 'Cassandra ActiveModel'
7
7
  s.summary = 'Cassandra ActiveModel'
8
8
 
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 2
7
7
  - 5
8
- - 6
9
- version: 2.5.6
8
+ - 7
9
+ version: 2.5.7
10
10
  platform: ruby
11
11
  authors:
12
12
  - Michael Koziarski