This is an automated email from the ASF dual-hosted git repository.
jiriondrusek pushed a commit to branch camel-main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
The following commit(s) were added to refs/heads/camel-main by this push:
new dc1fac9968 Disabled Headersmap in native, see #7330
dc1fac9968 is described below
commit dc1fac99688d38ddaa346b9e95e69926b1c5c9cf
Author: Jiri Ondrusek <[email protected]>
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