You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2023/05/18 06:54:49 UTC

[camel] branch main updated: CAMEL-19365: disabled UndertowHttpsSpringTest

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

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


The following commit(s) were added to refs/heads/main by this push:
     new 9ef9387a3d9 CAMEL-19365: disabled UndertowHttpsSpringTest
9ef9387a3d9 is described below

commit 9ef9387a3d956e4f7a086350b58cfec4252fafd2
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Thu May 18 07:19:56 2023 +0200

    CAMEL-19365: disabled UndertowHttpsSpringTest
---
 .../org/apache/camel/component/undertow/UndertowHttpsSpringTest.java    | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/components/camel-undertow/src/test/java/org/apache/camel/component/undertow/UndertowHttpsSpringTest.java b/components/camel-undertow/src/test/java/org/apache/camel/component/undertow/UndertowHttpsSpringTest.java
index 47d4e876e8c..cf97bf217dd 100644
--- a/components/camel-undertow/src/test/java/org/apache/camel/component/undertow/UndertowHttpsSpringTest.java
+++ b/components/camel-undertow/src/test/java/org/apache/camel/component/undertow/UndertowHttpsSpringTest.java
@@ -26,6 +26,7 @@ import org.apache.camel.ProducerTemplate;
 import org.apache.camel.component.mock.MockEndpoint;
 import org.junit.jupiter.api.AfterAll;
 import org.junit.jupiter.api.BeforeAll;
+import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Test;
 import org.junit.jupiter.api.extension.ExtendWith;
 import org.springframework.test.context.ContextConfiguration;
@@ -35,6 +36,7 @@ import static org.junit.jupiter.api.Assertions.assertEquals;
 
 @ExtendWith(SpringExtension.class)
 @ContextConfiguration(locations = { "/SpringTest.xml" })
+@Disabled("Disabled due to CAMEL-19365")
 public class UndertowHttpsSpringTest {
 
     private Integer port;