Skip to content

Commit

Permalink
changed cassandra image ref as gcr no longer works
Browse files Browse the repository at this point in the history
  • Loading branch information
mswiderski committed Sep 21, 2024
1 parent 846f128 commit 7cbc315
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class CassandraContainer implements QuarkusTestResourceLifecycleManager {
@SuppressWarnings("resource")
@Override
public Map<String, String> start() {
cassandra = new FixedHostPortGenericContainer<>("launcher.gcr.io/google/cassandra3").withFixedExposedPort(9042, 9042)
cassandra = new FixedHostPortGenericContainer<>("cassandra:3.11.2").withFixedExposedPort(9042, 9042)
// wait for the server to be fully started
.waitingFor(Wait.forLogMessage(".*\\bStarting listening for CQL clients\\b.*", 1))
.withLogConsumer(new Slf4jLogConsumer(LOGGER));
Expand Down

0 comments on commit 7cbc315

Please sign in to comment.