This is an automated email from the ASF dual-hosted git repository. nfilotto pushed a commit to branch CAMEL-19861/disable-flaky-test in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git
commit 303773bc1f3ce6f50666fc6ecffa083f702a8c60 Author: Nicolas Filotto <nfilo...@talend.com> AuthorDate: Wed Sep 13 11:41:43 2023 +0200 CAMEL-19861: camel-kafka - Disable the test KafkaConsumerIdempotentWithProcessorIT --- .../kafka/integration/KafkaConsumerIdempotentWithProcessorIT.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components-starter/camel-kafka-starter/src/test/java/org/apache/camel/component/kafka/integration/KafkaConsumerIdempotentWithProcessorIT.java b/components-starter/camel-kafka-starter/src/test/java/org/apache/camel/component/kafka/integration/KafkaConsumerIdempotentWithProcessorIT.java index d41756b143b..a20bad630e7 100644 --- a/components-starter/camel-kafka-starter/src/test/java/org/apache/camel/component/kafka/integration/KafkaConsumerIdempotentWithProcessorIT.java +++ b/components-starter/camel-kafka-starter/src/test/java/org/apache/camel/component/kafka/integration/KafkaConsumerIdempotentWithProcessorIT.java @@ -26,6 +26,7 @@ import org.apache.camel.spring.boot.CamelAutoConfiguration; import org.apache.camel.test.spring.junit5.CamelSpringBootTest; import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.context.annotation.Bean; @@ -42,6 +43,7 @@ import org.springframework.test.annotation.DirtiesContext; KafkaConsumerIdempotentWithProcessorIT.TestConfiguration.class, } ) +@Disabled("https://issues.apache.org/jira/browse/CAMEL-19861") public class KafkaConsumerIdempotentWithProcessorIT extends KafkaConsumerIdempotentTestSupport { public static final String TOPIC = "testidemp3";