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 6b2d92cb49b (chores) camel-undertow: disabled flaky test on GH actions
6b2d92cb49b is described below
commit 6b2d92cb49b123f14ce28ca4e2aefa7676acfa3a
Author: Otavio Rodolfo Piske <[email protected]>
AuthorDate: Wed Nov 29 11:21:57 2023 +0100
(chores) camel-undertow: disabled flaky test on GH actions
---
.../apache/camel/component/undertow/ws/UndertowWsConsumerRouteTest.java | 2 ++
1 file changed, 2 insertions(+)
diff --git
a/components/camel-undertow/src/test/java/org/apache/camel/component/undertow/ws/UndertowWsConsumerRouteTest.java
b/components/camel-undertow/src/test/java/org/apache/camel/component/undertow/ws/UndertowWsConsumerRouteTest.java
index 9fe796c8f2a..d7193c60990 100644
---
a/components/camel-undertow/src/test/java/org/apache/camel/component/undertow/ws/UndertowWsConsumerRouteTest.java
+++
b/components/camel-undertow/src/test/java/org/apache/camel/component/undertow/ws/UndertowWsConsumerRouteTest.java
@@ -42,6 +42,7 @@ import
org.apache.camel.component.undertow.UndertowConstants.EventType;
import org.apache.camel.converter.IOConverter;
import org.apache.camel.test.infra.common.http.WebsocketTestClient;
import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.condition.DisabledIfSystemProperty;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@@ -161,6 +162,7 @@ public class UndertowWsConsumerRouteTest extends
BaseUndertowTest {
testClient2.close();
}
+ @DisabledIfSystemProperty(named = "ci.env.name", matches = "github.com",
disabledReason = "Flaky on GitHub Actions")
@Test
public void echo() throws Exception {
WebsocketTestClient wsclient1 = new
WebsocketTestClient("ws://localhost:" + getPort() + "/app3", 2);