This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch camel-quarkus-main in repository https://gitbox.apache.org/repos/asf/camel-quarkus-examples.git
The following commit(s) were added to refs/heads/camel-quarkus-main by this push: new 2ec1a9c Temporarily disable health test due to apache/camel-quarkus#3989 2ec1a9c is described below commit 2ec1a9c0d5a3dcf5f8b05d06820b8eda179c5fcc Author: James Netherton <jamesnether...@gmail.com> AuthorDate: Thu Aug 11 14:45:55 2022 +0100 Temporarily disable health test due to apache/camel-quarkus#3989 --- health/src/test/java/org/acme/health/HealthTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/health/src/test/java/org/acme/health/HealthTest.java b/health/src/test/java/org/acme/health/HealthTest.java index 417a3f2..a1396a1 100644 --- a/health/src/test/java/org/acme/health/HealthTest.java +++ b/health/src/test/java/org/acme/health/HealthTest.java @@ -19,6 +19,7 @@ package org.acme.health; import io.quarkus.test.junit.QuarkusTest; import io.restassured.RestAssured; import org.hamcrest.Matchers; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import static org.hamcrest.CoreMatchers.is; @@ -26,6 +27,7 @@ import static org.hamcrest.CoreMatchers.is; @QuarkusTest public class HealthTest { + @Disabled("https://github.com/apache/camel-quarkus/issues/3989") @Test public void testHealth() throws InterruptedException { RestAssured.get("/q/health")