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

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

commit ded80818cb778c03f686dd532486c0df85a411d0
Author: James Netherton <jamesnether...@gmail.com>
AuthorDate: Wed Jan 15 15:54:49 2025 +0000

    Disable postgres-debezium update & delete tests due to #6911
---
 .../quarkus/component/debezium/common/it/AbstractDebeziumTest.java     | 3 +++
 1 file changed, 3 insertions(+)

diff --git 
a/integration-tests/debezium/src/test/java/org/apache/camel/quarkus/component/debezium/common/it/AbstractDebeziumTest.java
 
b/integration-tests/debezium/src/test/java/org/apache/camel/quarkus/component/debezium/common/it/AbstractDebeziumTest.java
index c76bdc9c54..e980d2c1d0 100644
--- 
a/integration-tests/debezium/src/test/java/org/apache/camel/quarkus/component/debezium/common/it/AbstractDebeziumTest.java
+++ 
b/integration-tests/debezium/src/test/java/org/apache/camel/quarkus/component/debezium/common/it/AbstractDebeziumTest.java
@@ -24,6 +24,7 @@ import io.restassured.RestAssured;
 import io.restassured.response.Response;
 import org.hamcrest.Matcher;
 import org.jboss.logging.Logger;
+import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Order;
 import org.junit.jupiter.api.Test;
 
@@ -99,6 +100,7 @@ public abstract class AbstractDebeziumTest {
                 name, city));
     }
 
+    @Disabled("https://github.com/apache/camel-quarkus/issues/6911";)
     @Test
     @Order(2)
     public void testUpdate() throws SQLException {
@@ -119,6 +121,7 @@ public abstract class AbstractDebeziumTest {
         receiveResponse(200, containsString(COMPANY_2 + "_changed"));
     }
 
+    @Disabled("https://github.com/apache/camel-quarkus/issues/6911";)
     @Test
     @Order(3)
     public void testDelete() throws SQLException {

Reply via email to