You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2021/03/02 08:05:43 UTC

[camel-quarkus] 04/05: Temporarily disable SQL itest due to #2296

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

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

commit 8f95f4caf6f040270ca8a75d98f09913b9439800
Author: James Netherton <ja...@gmail.com>
AuthorDate: Mon Mar 1 13:11:42 2021 +0000

    Temporarily disable SQL itest due to #2296
---
 .../test/java/org/apache/camel/quarkus/component/sql/it/SqlTest.java    | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/integration-tests/sql/src/test/java/org/apache/camel/quarkus/component/sql/it/SqlTest.java b/integration-tests/sql/src/test/java/org/apache/camel/quarkus/component/sql/it/SqlTest.java
index d4b016d..776fbcd 100644
--- a/integration-tests/sql/src/test/java/org/apache/camel/quarkus/component/sql/it/SqlTest.java
+++ b/integration-tests/sql/src/test/java/org/apache/camel/quarkus/component/sql/it/SqlTest.java
@@ -21,12 +21,14 @@ import io.quarkus.test.h2.H2DatabaseTestResource;
 import io.quarkus.test.junit.QuarkusTest;
 import io.restassured.RestAssured;
 import io.restassured.http.ContentType;
+import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Test;
 
 import static org.hamcrest.Matchers.is;
 
 @QuarkusTest
 @QuarkusTestResource(H2DatabaseTestResource.class)
+@Disabled("https://github.com/apache/camel-quarkus/issues/2296")
 class SqlTest {
 
     @Test