This is an automated email from the ASF dual-hosted git repository.
zehnder pushed a commit to branch
3670-build-fails-in-streampipes-integration-tests-due-to-kafka-test-container
in repository https://gitbox.apache.org/repos/asf/streampipes.git
The following commit(s) were added to
refs/heads/3670-build-fails-in-streampipes-integration-tests-due-to-kafka-test-container
by this push:
new 2ecedaa90c fix(#3670): Downgrade Kafka Docker image version to 7.9.1
2ecedaa90c is described below
commit 2ecedaa90c661648a656fd9985b655a111d2c4f2
Author: Philipp Zehnder <[email protected]>
AuthorDate: Thu Jun 12 10:18:01 2025 +0200
fix(#3670): Downgrade Kafka Docker image version to 7.9.1
---
.../org/apache/streampipes/integration/containers/KafkaContainer.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/streampipes-integration-tests/src/test/java/org/apache/streampipes/integration/containers/KafkaContainer.java
b/streampipes-integration-tests/src/test/java/org/apache/streampipes/integration/containers/KafkaContainer.java
index 71ff57bf26..e9da5ad4a6 100644
---
a/streampipes-integration-tests/src/test/java/org/apache/streampipes/integration/containers/KafkaContainer.java
+++
b/streampipes-integration-tests/src/test/java/org/apache/streampipes/integration/containers/KafkaContainer.java
@@ -31,7 +31,7 @@ public class KafkaContainer extends
org.testcontainers.containers.KafkaContainer
public KafkaContainer() {
- super(DockerImageName.parse("confluentinc/cp-kafka"));
+ super(DockerImageName.parse("confluentinc/cp-kafka:7.9.1"));
}