Skip to content

Commit

Permalink
bump from 3.11.10 to 3.11.11
Browse files Browse the repository at this point in the history
  • Loading branch information
smiklosovic committed Jul 28, 2021
1 parent 249ea05 commit fdab31f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- m2-{{ checksum "pom.xml" }}
- m2-

- run: (echo "${google_application_credentials}" > /tmp/gcp.json) && mvn clean install -PsnapshotRepo,rpm,deb,cloudTests,localTests -DoutputDirectory=/tmp/artifacts -Dcassandra3.version=3.11.10 -Dcassandra4.version=4.0.0
- run: (echo "${google_application_credentials}" > /tmp/gcp.json) && mvn clean install -PsnapshotRepo,rpm,deb,cloudTests,localTests -DoutputDirectory=/tmp/artifacts -Dcassandra3.version=3.11.11 -Dcassandra4.version=4.0.0

- save_cache:
paths:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public abstract class AbstractBackupTest {

protected static final Logger logger = LoggerFactory.getLogger(AbstractBackupTest.class);

public static final String CASSANDRA_VERSION = System.getProperty("cassandra3.version", "3.11.10");
public static final String CASSANDRA_VERSION = System.getProperty("cassandra3.version", "3.11.11");

public static final String CASSANDRA_4_VERSION = System.getProperty("cassandra4.version", "4.0-rc2");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ public void setup() throws Exception {

private Cassandra getCassandra() {
return new CassandraBuilder()
.version(Version.parse(System.getProperty("cassandra3.version", "3.11.10")))
.version(Version.parse(System.getProperty("cassandra3.version", "3.11.11")))
.jvmOptions("-Xmx1g", "-Xms1g", "-Dcassandra.ring_delay_ms=1000")
.workingDirectory(() -> cassandraDir)
.workingDirectoryDestroyer(WorkingDirectoryDestroyer.deleteAll())
Expand Down

0 comments on commit fdab31f

Please sign in to comment.