cassandra-driver 1.0.0.beta.2 → 1.0.0.beta.3
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.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/lib/cassandra/cluster/control_connection.rb +3 -1
- data/lib/cassandra/cluster/registry.rb +1 -1
- data/lib/cassandra/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dd171d621192a4a0e4bbebd4601a9e5c2dab6654
|
4
|
+
data.tar.gz: b779c047aef25ed28329f4237f677f13b985c494
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 97de07b2338b3d68cd89ca452121666e638775fde7237f33f3c7e2a4db4ae364ad4ce799bf30e4c671befa8dd921a141cb8980ef4d9a95009c3bd3728b1f0dd9
|
7
|
+
data.tar.gz: be2236c32cf4dabbcb4ea7ed8597f8dec6cf03ef55cabbbe7b5bf13a20150cd854382d8609dd91ec0f0f2e9d8759890b3cfbf3a5e291e7aadceb7032fb6c980e
|
data/README.md
CHANGED
@@ -86,9 +86,9 @@ Some of the new features added to the driver have unfortunately led to changes i
|
|
86
86
|
|
87
87
|
Current release introduces the following new features:
|
88
88
|
|
89
|
-
*
|
89
|
+
* [Token-aware load balancing policy](http://datastax.github.io/ruby-driver/features/load_balancing/token_aware/)
|
90
|
+
* [SSL encryption](http://datastax.github.io/ruby-driver/features/security/ssl_encryption/)
|
90
91
|
* Domain names
|
91
|
-
* SSL encryption
|
92
92
|
|
93
93
|
## Changelog & versioning
|
94
94
|
|
@@ -149,7 +149,7 @@ module Cassandra
|
|
149
149
|
private
|
150
150
|
|
151
151
|
def create_host(ip, data)
|
152
|
-
Host.new(ip, data['host_id'], data['rack'], data['data_center'], data['release_version'], data['tokens'].freeze, :up)
|
152
|
+
Host.new(ip, data['host_id'], data['rack'], data['data_center'], data['release_version'], Array(data['tokens']).freeze, :up)
|
153
153
|
end
|
154
154
|
|
155
155
|
def toggle_up(host)
|
data/lib/cassandra/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cassandra-driver
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.beta.
|
4
|
+
version: 1.0.0.beta.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Theo Hultberg
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-10-
|
12
|
+
date: 2014-10-04 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
prerelease: false
|