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 ecb4ef164020b40cbdb6e1ef61f68df9f33bb5ff Author: James Netherton <jamesnether...@gmail.com> AuthorDate: Thu Jan 25 08:24:10 2024 +0000 Disable JasyptSecureExtensionConfigTest.secureDirectComponentTimeout due to #5675 --- .../quarkus/component/jasypt/it/JasyptSecureExtensionConfigTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/integration-tests/jasypt/src/test/java/org/apache/camel/quarkus/component/jasypt/it/JasyptSecureExtensionConfigTest.java b/integration-tests/jasypt/src/test/java/org/apache/camel/quarkus/component/jasypt/it/JasyptSecureExtensionConfigTest.java index 1ec1da5a3e..ae55cbea81 100644 --- a/integration-tests/jasypt/src/test/java/org/apache/camel/quarkus/component/jasypt/it/JasyptSecureExtensionConfigTest.java +++ b/integration-tests/jasypt/src/test/java/org/apache/camel/quarkus/component/jasypt/it/JasyptSecureExtensionConfigTest.java @@ -19,6 +19,7 @@ package org.apache.camel.quarkus.component.jasypt.it; import io.quarkus.test.junit.QuarkusTest; import io.quarkus.test.junit.TestProfile; import io.restassured.RestAssured; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import static org.hamcrest.Matchers.is; @@ -35,6 +36,7 @@ class JasyptSecureExtensionConfigTest { .body(is("camel")); } + @Disabled("https://github.com/apache/camel-quarkus/issues/5675") @Test void secureDirectComponentTimeout() throws InterruptedException { RestAssured.given()