You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by gi...@apache.org on 2021/12/01 04:25:50 UTC

[camel-quarkus] 02/02: Temporarily disable kafka integration test due to #3312

This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch camel-main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit 37d6f0e8fc854cd86112ea31a57b6c5d9e691c13
Author: James Netherton <ja...@gmail.com>
AuthorDate: Fri Nov 19 10:50:06 2021 +0000

    Temporarily disable kafka integration test due to #3312
---
 .../java/org/apache/camel/quarkus/component/kafka/it/CamelKafkaIT.java  | 2 ++
 .../org/apache/camel/quarkus/component/kafka/it/CamelKafkaTest.java     | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/integration-tests/kafka/src/test/java/org/apache/camel/quarkus/component/kafka/it/CamelKafkaIT.java b/integration-tests/kafka/src/test/java/org/apache/camel/quarkus/component/kafka/it/CamelKafkaIT.java
index 39ac37e..1944d61 100644
--- a/integration-tests/kafka/src/test/java/org/apache/camel/quarkus/component/kafka/it/CamelKafkaIT.java
+++ b/integration-tests/kafka/src/test/java/org/apache/camel/quarkus/component/kafka/it/CamelKafkaIT.java
@@ -17,7 +17,9 @@
 package org.apache.camel.quarkus.component.kafka.it;
 
 import io.quarkus.test.junit.NativeImageTest;
+import org.junit.jupiter.api.Disabled;
 
 @NativeImageTest
+@Disabled("https://github.com/apache/camel-quarkus/issues/3312")
 public class CamelKafkaIT extends CamelKafkaTest {
 }
diff --git a/integration-tests/kafka/src/test/java/org/apache/camel/quarkus/component/kafka/it/CamelKafkaTest.java b/integration-tests/kafka/src/test/java/org/apache/camel/quarkus/component/kafka/it/CamelKafkaTest.java
index 627e5c5..a4e91cb 100644
--- a/integration-tests/kafka/src/test/java/org/apache/camel/quarkus/component/kafka/it/CamelKafkaTest.java
+++ b/integration-tests/kafka/src/test/java/org/apache/camel/quarkus/component/kafka/it/CamelKafkaTest.java
@@ -27,6 +27,7 @@ import io.restassured.http.ContentType;
 import io.restassured.path.json.JsonPath;
 import org.apache.camel.quarkus.test.support.kafka.KafkaTestResource;
 import org.awaitility.Awaitility;
+import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Test;
 
 import static io.restassured.RestAssured.given;
@@ -37,6 +38,7 @@ import static org.junit.jupiter.api.Assertions.assertEquals;
 
 @QuarkusTest
 @QuarkusTestResource(KafkaTestResource.class)
+@Disabled("https://github.com/apache/camel-quarkus/issues/3312")
 public class CamelKafkaTest {
 
     @Test