This is an automated email from the ASF dual-hosted git repository.
jamesnetherton 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 0832a40aa2 Disable debezium-mongo testing and native profile due to
#6357
0832a40aa2 is described below
commit 0832a40aa268052c0c6ed515100d00f25825ea0f
Author: James Netherton <[email protected]>
AuthorDate: Fri Aug 16 16:02:04 2024 +0100
Disable debezium-mongo testing and native profile due to #6357
---
integration-tests/debezium/pom.xml | 2 ++
.../component/debezium/common/it/mongodb/DebeziumMongodbTest.java | 2 ++
2 files changed, 4 insertions(+)
diff --git a/integration-tests/debezium/pom.xml
b/integration-tests/debezium/pom.xml
index 0463e98cc7..58fd5b56d6 100644
--- a/integration-tests/debezium/pom.xml
+++ b/integration-tests/debezium/pom.xml
@@ -128,6 +128,7 @@
<profiles>
+ <!-- TODO: https://github.com/apache/camel-quarkus/issues/6357
<profile>
<id>native</id>
<activation>
@@ -155,6 +156,7 @@
</plugins>
</build>
</profile>
+ -->
<profile>
<id>mysqlDriver</id>
<activation>
diff --git
a/integration-tests/debezium/src/test/java/org/apache/camel/quarkus/component/debezium/common/it/mongodb/DebeziumMongodbTest.java
b/integration-tests/debezium/src/test/java/org/apache/camel/quarkus/component/debezium/common/it/mongodb/DebeziumMongodbTest.java
index af717a45ed..495e226baa 100644
---
a/integration-tests/debezium/src/test/java/org/apache/camel/quarkus/component/debezium/common/it/mongodb/DebeziumMongodbTest.java
+++
b/integration-tests/debezium/src/test/java/org/apache/camel/quarkus/component/debezium/common/it/mongodb/DebeziumMongodbTest.java
@@ -35,6 +35,7 @@ import org.eclipse.microprofile.config.ConfigProvider;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.MethodOrderer;
import org.junit.jupiter.api.Order;
import org.junit.jupiter.api.Test;
@@ -47,6 +48,7 @@ import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.fail;
import static org.junit.jupiter.api.Assumptions.assumeTrue;
+@Disabled("https://github.com/apache/camel-quarkus/issues/6357")
@QuarkusTest
@WithTestResource(DebeziumMongodbTestResource.class)
@TestMethodOrder(MethodOrderer.OrderAnnotation.class)