Skip to content

Commit 5c000dc

Browse files
authored
Fix redpanda container version (#164)
1 parent 54917fd commit 5c000dc

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

flink-sql-runner/src/test/java/com/datasqrl/flinkrunner/AbstractITSupport.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@ public class AbstractITSupport {
7272

7373
@Container
7474
protected static final GenericContainer<?> redpandaContainer =
75-
new GenericContainer<>(DockerImageName.parse("redpandadata/redpanda"))
75+
new GenericContainer<>(
76+
DockerImageName.parse("docker.redpanda.com/redpandadata/redpanda:v23.1.2"))
7677
.withNetwork(sharedNetwork)
7778
.withNetworkAliases("redpanda")
7879
.withExposedPorts(REDPANDA_PORT);

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@
106106
<picocli.version>4.7.7</picocli.version>
107107
<postgres.version>42.7.7</postgres.version>
108108
<slf4j.version>2.0.17</slf4j.version>
109-
<testcontainers.version>1.21.2</testcontainers.version>
109+
<testcontainers.version>1.21.3</testcontainers.version>
110110

111111
<!-- Plugin versions -->
112112
<build-helper-maven-plugin.version>3.6.1</build-helper-maven-plugin.version>

0 commit comments

Comments
 (0)