Skip to content

Commit

Permalink
Reduce the version of Cassandra to 3.10 for ci (#464)
Browse files Browse the repository at this point in the history
also set ScyllaDB.VERSION public access.

related: #463

Change-Id: I23c0ed924ee7c7cdb58416b0160fa319959b90af
  • Loading branch information
javeme authored and zhoney committed Apr 18, 2019
1 parent 51a8893 commit cf80faf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion hugegraph-dist/src/assembly/travis/install-cassandra.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -ev

TRAVIS_DIR=`dirname $0`
CASSA_DOWNLOAD_ADDRESS="http://archive.apache.org/dist/cassandra"
CASSA_VERSION="3.11.3"
CASSA_VERSION="3.10"
CASSA_PACKAGE="apache-cassandra-${CASSA_VERSION}"
CASSA_TAR="${CASSA_PACKAGE}-bin.tar.gz"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@

public class ScyllaDBStoreProvider extends CassandraStoreProvider {

private static final Logger LOG = Log.logger(CassandraStore.class);

// TODO: read ScyllaDB version from conf
private static final int VERSION = 20;
public static int VERSION = 20;

private static final Logger LOG = Log.logger(CassandraStore.class);

private static final BackendFeatures FEATURES = new ScyllaDBFeatures();

Expand Down

0 comments on commit cf80faf

Please sign in to comment.