Merge pull request #12926 from smatvienko-tb/feature/cassandra5

Cassandra 5.0 support
This commit is contained in:
Viacheslav Klimov 2025-05-28 17:54:35 +03:00 committed by GitHub
commit ce001082e8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ public abstract class AbstractNoSqlContainer {
); );
@ClassRule(order = 0) @ClassRule(order = 0)
public static final CassandraContainer cassandra = (CassandraContainer) new CassandraContainer("cassandra:4.1") { public static final CassandraContainer cassandra = (CassandraContainer) new CassandraContainer("cassandra:5.0") {
@Override @Override
protected void containerIsStarted(InspectContainerResponse containerInfo) { protected void containerIsStarted(InspectContainerResponse containerInfo) {
super.containerIsStarted(containerInfo); super.containerIsStarted(containerInfo);

View File

@ -29,7 +29,7 @@ services:
- ./tb-node/postgres:/var/lib/postgresql/data - ./tb-node/postgres:/var/lib/postgresql/data
cassandra: cassandra:
restart: always restart: always
image: "cassandra:4.1" image: "cassandra:5.0"
ports: ports:
- "9042" - "9042"
volumes: volumes: