This is an automated email from the ASF dual-hosted git repository.
jiriondrusek pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
The following commit(s) were added to refs/heads/main by this push:
new 3c85c2e7ee Disabled jdbc/db2 test for native in FIPS (#6272)
3c85c2e7ee is described below
commit 3c85c2e7ee214e30d8efedf3ece535169fa4f7f6
Author: JiriOndrusek <[email protected]>
AuthorDate: Tue Jul 16 13:20:48 2024 +0200
Disabled jdbc/db2 test for native in FIPS (#6272)
---
.../org/apache/camel/quarkus/component/jdbc/db2/CamelDb2JdbcIT.java | 2 ++
1 file changed, 2 insertions(+)
diff --git
a/integration-test-groups/jdbc/db2/src/test/java/org/apache/camel/quarkus/component/jdbc/db2/CamelDb2JdbcIT.java
b/integration-test-groups/jdbc/db2/src/test/java/org/apache/camel/quarkus/component/jdbc/db2/CamelDb2JdbcIT.java
index a0d0096c07..1445cf8824 100644
---
a/integration-test-groups/jdbc/db2/src/test/java/org/apache/camel/quarkus/component/jdbc/db2/CamelDb2JdbcIT.java
+++
b/integration-test-groups/jdbc/db2/src/test/java/org/apache/camel/quarkus/component/jdbc/db2/CamelDb2JdbcIT.java
@@ -17,8 +17,10 @@
package org.apache.camel.quarkus.component.jdbc.db2;
import io.quarkus.test.junit.QuarkusIntegrationTest;
+import org.apache.camel.quarkus.test.DisabledIfFipsMode;
@QuarkusIntegrationTest
+@DisabledIfFipsMode //https://github.com/apache/camel-quarkus/issues/5993
public class CamelDb2JdbcIT extends CamelDb2JdbcTest {
}