You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2022/10/17 09:47:19 UTC

[camel] 03/04: Skip undertow due to SSL testing issue on CI servers

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

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

commit 479af0d57988e21e80aae2a374ea26272d2a4e8a
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Mon Oct 17 11:45:38 2022 +0200

    Skip undertow due to SSL testing issue on CI servers
---
 .../src/test/java/org/apache/camel/component/rest/openapi/HttpsTest.java | 1 +
 .../src/test/java/org/apache/camel/component/rest/swagger/HttpsTest.java | 1 +
 2 files changed, 2 insertions(+)

diff --git a/components/camel-rest-openapi/src/test/java/org/apache/camel/component/rest/openapi/HttpsTest.java b/components/camel-rest-openapi/src/test/java/org/apache/camel/component/rest/openapi/HttpsTest.java
index b7b485c5434..34fb974fbce 100644
--- a/components/camel-rest-openapi/src/test/java/org/apache/camel/component/rest/openapi/HttpsTest.java
+++ b/components/camel-rest-openapi/src/test/java/org/apache/camel/component/rest/openapi/HttpsTest.java
@@ -144,6 +144,7 @@ public abstract class HttpsTest extends CamelTestSupport {
     public static Iterable<String> knownProducers() {
         final List<String> producers = new ArrayList<>(Arrays.asList(RestEndpoint.DEFAULT_REST_PRODUCER_COMPONENTS));
         // skip http due security certificate testing problems
+        producers.remove("undertow");
         producers.remove("vertx-http");
         producers.remove("http");
         return producers;
diff --git a/components/camel-rest-swagger/src/test/java/org/apache/camel/component/rest/swagger/HttpsTest.java b/components/camel-rest-swagger/src/test/java/org/apache/camel/component/rest/swagger/HttpsTest.java
index 467993b577e..9e9ac19d8ad 100644
--- a/components/camel-rest-swagger/src/test/java/org/apache/camel/component/rest/swagger/HttpsTest.java
+++ b/components/camel-rest-swagger/src/test/java/org/apache/camel/component/rest/swagger/HttpsTest.java
@@ -162,6 +162,7 @@ public abstract class HttpsTest extends CamelTestSupport {
     public static Iterable<String> knownProducers() {
         final List<String> producers = new ArrayList<>(Arrays.asList(RestEndpoint.DEFAULT_REST_PRODUCER_COMPONENTS));
         // skip http due security certificate testing problems
+        producers.remove("undertow");
         producers.remove("vertx-http");
         producers.remove("http");
         return producers;