From 8e5bd4cc80cf3c08ba56b54db176b40120b04d5c Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Sat, 8 Aug 2020 14:28:30 -0400 Subject: [PATCH] Disable STOMP test until the fix reactor-netty --- .../integration/stomp/client/StompServerIntegrationTests.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/spring-integration-stomp/src/test/java/org/springframework/integration/stomp/client/StompServerIntegrationTests.java b/spring-integration-stomp/src/test/java/org/springframework/integration/stomp/client/StompServerIntegrationTests.java index a775c84788..d6905b9197 100644 --- a/spring-integration-stomp/src/test/java/org/springframework/integration/stomp/client/StompServerIntegrationTests.java +++ b/spring-integration-stomp/src/test/java/org/springframework/integration/stomp/client/StompServerIntegrationTests.java @@ -22,6 +22,7 @@ import static org.assertj.core.api.Assertions.assertThatExceptionOfType; import org.apache.activemq.broker.BrokerService; 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.springframework.context.ApplicationEvent; @@ -62,6 +63,7 @@ import org.springframework.util.SocketUtils; * * @since 4.2 */ +@Disabled("Until the fix in reactor-netty-core") public class StompServerIntegrationTests { private static BrokerService activeMQBroker;