This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit 3bc47e214f9af6853b36ec95d7c329bb7e6282fc Author: James Netherton <[email protected]> AuthorDate: Tue Jan 12 08:08:16 2021 +0000 Use consistent Kafka docker image version --- .../apache/camel/quarkus/component/kafka/it/CamelKafkaTestResource.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/kafka/src/test/java/org/apache/camel/quarkus/component/kafka/it/CamelKafkaTestResource.java b/integration-tests/kafka/src/test/java/org/apache/camel/quarkus/component/kafka/it/CamelKafkaTestResource.java index 1aed18f..81439da 100644 --- a/integration-tests/kafka/src/test/java/org/apache/camel/quarkus/component/kafka/it/CamelKafkaTestResource.java +++ b/integration-tests/kafka/src/test/java/org/apache/camel/quarkus/component/kafka/it/CamelKafkaTestResource.java @@ -28,7 +28,7 @@ import org.testcontainers.utility.TestcontainersConfiguration; public class CamelKafkaTestResource implements ContainerResourceLifecycleManager { private static final Logger LOGGER = LoggerFactory.getLogger(CamelKafkaTestResource.class); - private static final String CONFLUENT_PLATFORM_VERSION = "5.3.1"; + private static final String CONFLUENT_PLATFORM_VERSION = "5.4.3"; private KafkaContainer container;
