From 9fbb37eadf726ae7cbc5120fa8fb9229d799d7ca Mon Sep 17 00:00:00 2001 From: Jan Ciolek Date: Thu, 19 Oct 2023 16:54:09 +0200 Subject: [PATCH] cassandra/docker-compose: go back to using the latest cassandra version In January the tests started failing on Cassandra `4.1`, so we pinned the cassandra version to `4.0.7`, which didn't have these problems. `4.0.7` is the version that we've been using in the CI since then. In the meantime there were new releases of `Cassandra`, at the moment the latest is `4.1.3`. Let's try to go back to the latest version, maybe the problems fixed themselves during the last nine months. Refs: https://github.com/scylladb/scylla-rust-driver/issues/620 Refs: https://github.com/scylladb/scylla-rust-driver/pull/629 Fixes: https://github.com/scylladb/scylla-rust-driver/issues/633 Signed-off-by: Jan Ciolek --- test/cluster/cassandra/docker-compose.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/cluster/cassandra/docker-compose.yml b/test/cluster/cassandra/docker-compose.yml index d271285380..aa46efd1f6 100644 --- a/test/cluster/cassandra/docker-compose.yml +++ b/test/cluster/cassandra/docker-compose.yml @@ -10,7 +10,7 @@ networks: - subnet: 172.42.0.0/16 services: cassandra1: - image: cassandra:4.0.7 + image: cassandra healthcheck: test: ["CMD", "cqlsh", "-e", "describe keyspaces" ] interval: 5s @@ -24,7 +24,7 @@ services: - HEAP_NEWSIZE=512M - MAX_HEAP_SIZE=2048M cassandra2: - image: cassandra:4.0.7 + image: cassandra healthcheck: test: ["CMD", "cqlsh", "-e", "describe keyspaces" ] interval: 5s @@ -42,7 +42,7 @@ services: cassandra1: condition: service_healthy cassandra3: - image: cassandra:4.0.7 + image: cassandra healthcheck: test: ["CMD", "cqlsh", "-e", "describe keyspaces" ] interval: 5s