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 a7eb86163303feaf5ff6688c279f164ed7f5e5cf Author: Jiri Ondrusek <ondrusek.j...@gmail.com> AuthorDate: Mon May 5 16:55:27 2025 +0200 Disabled Headersmap in native, see #7330 --- integration-tests/headersmap/pom.xml | 2 ++ .../apache/camel/quarkus/component/headersmap/it/HeadersmapTest.java | 2 ++ 2 files changed, 4 insertions(+) diff --git a/integration-tests/headersmap/pom.xml b/integration-tests/headersmap/pom.xml index 24d0e78b42..045d5a00e1 100644 --- a/integration-tests/headersmap/pom.xml +++ b/integration-tests/headersmap/pom.xml @@ -55,6 +55,7 @@ <profiles> + <!-- https://github.com/apache/camel-quarkus/issues/7330 <profile> <id>native</id> <activation> @@ -82,6 +83,7 @@ </plugins> </build> </profile> + --> <profile> <id>virtualDependencies</id> <activation> diff --git a/integration-tests/headersmap/src/test/java/org/apache/camel/quarkus/component/headersmap/it/HeadersmapTest.java b/integration-tests/headersmap/src/test/java/org/apache/camel/quarkus/component/headersmap/it/HeadersmapTest.java index fe50c0f1c3..220aa23c2f 100644 --- a/integration-tests/headersmap/src/test/java/org/apache/camel/quarkus/component/headersmap/it/HeadersmapTest.java +++ b/integration-tests/headersmap/src/test/java/org/apache/camel/quarkus/component/headersmap/it/HeadersmapTest.java @@ -19,6 +19,7 @@ package org.apache.camel.quarkus.component.headersmap.it; import java.util.HashMap; import java.util.Map; +import io.quarkus.test.junit.DisabledOnIntegrationTest; import io.quarkus.test.junit.QuarkusTest; import io.restassured.RestAssured; import org.apache.camel.component.headersmap.FastHeadersMapFactory; @@ -31,6 +32,7 @@ import static org.junit.jupiter.api.Assertions.assertNull; import static org.junit.jupiter.api.Assertions.assertTrue; @QuarkusTest +@DisabledOnIntegrationTest //see https://github.com/apache/camel-quarkus/issues/7330 class HeadersmapTest { @Test