Skip to content
This repository has been archived by the owner on May 27, 2020. It is now read-only.

Commit

Permalink
Fixed changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
edu committed Oct 1, 2018
1 parent 3f2b04f commit b99681f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## 2.1.20.0 (upcoming)

* Upgrade to Apache Cassandra 2.1.20
* Upgrade to Apache Cassandra 2.1.20

## 2.1.19.0 (December 26, 2017)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
*/
public class CassandraConfig {

static final boolean EMBEDDED = Boolean.parseBoolean(get("embedded", "true"));
static final boolean EMBEDDED = Boolean.parseBoolean(get("embedded", "false"));
static final String HOST = getIP("host", "127.0.0.1");
static final int REPLICATION = Integer.valueOf(get("replication", "1"));
static final int REPLICATION = Integer.valueOf(get("replication", "3"));
static final ConsistencyLevel CONSISTENCY = ConsistencyLevel.valueOf(get("consistency", "QUORUM"));
static final int FETCH = Integer.parseInt(get("fetch", "100"));
static final int THREADS = Integer.parseInt(get("threads", "0"));
Expand Down

0 comments on commit b99681f

Please sign in to comment.