Skip to content

Commit 149540a

Browse files
author
Bulat Shakirzyanov
committedSep 11, 2014
[docs] minor doc fixes
1 parent 79772aa commit 149540a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed
 

‎features/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Connecting and Discovering Nodes
44

5-
Ruby driver will connection to 127.0.0.1 if no `:hosts` given to `Cassandra.connect`. It will automatically discover all peers and add them to cluster metadata.
5+
Ruby driver will connect to 127.0.0.1 if no `:hosts` given to `Cassandra.connect`. It will automatically discover all peers and add them to cluster metadata.
66

77
```ruby
88
require 'cassandra'
@@ -375,9 +375,9 @@ There's a known issue with collections that get too big. The protocol uses a sho
375375

376376
## Authentication doesn't work
377377

378-
If you're using Cassandra 2.0 or DataStax Enterprise 3.1 or higher and/or are using something other than the built in [`Password` authenticator](/api/auth/providers/password/) your setup is theoretically supported, but it's not field tested.
378+
If you're using Cassandra 2.0 or DataStax Enterprise 3.1 or higher and/or are using something other than the built in [`Password` authenticator](/api/auth/providers/password/) your setup is supported.
379379

380-
If you are using DataStax Enterprise earlier than 3.1 authentication is unfortunately not supported. Please open an issue and we might be able to get it working, I just need someone who's willing to test it out. DataStax backported the authentication from Cassandra 2.0 into DSE 3.0, even though it only uses Cassandra 1.2. The authentication logic might not be able to handle this and will try to authenticate with DSE using an earlier version of the protocol. In short, DSE before 3.1 uses a non-standard protocol, but it should be possible to get it working. DSE 3.1 and 4.0 have been confirmed to work.
380+
DSE before 3.1 uses a non-standard protocol and is not currently supported.
381381

382382
## I get "end of file reached" / I'm connecting to port 9160 and it doesn't work
383383

‎features/basics/result_paging.feature

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Feature: Result paging
3535
@cassandra-version-specific @cassandra-version-2.0
3636
Scenario: Paging through results synchronously
3737
Given the following example:
38-
"""ruby
38+
"""ruby
3939
require 'cassandra'
4040
4141
cluster = Cassandra.connect
@@ -86,7 +86,7 @@ Feature: Result paging
8686
@cassandra-version-specific @cassandra-version-2.0
8787
Scenario: Paging through results asynchronously
8888
Given the following example:
89-
"""ruby
89+
"""ruby
9090
require 'cassandra'
9191
9292
def page_through(future)

0 commit comments

Comments
 (0)
Please sign in to comment.