You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GH-10487: Add STOMP CONNECT frame from the client (#10488)
Fixes: #10487
* Fix `WebSocketInboundChannelAdapter` to register own client session
in the `StompSubProtocolHandler` for a proper correlation for upcoming messages from the server
* Fix `WebSocketOutboundMessageHandlerTests` to produce required STOMP `CONNECT` before publishing data
Cherry-pick to `6.5.x` & `6.4.x`
Copy file name to clipboardExpand all lines: spring-integration-websocket/src/main/java/org/springframework/integration/websocket/inbound/WebSocketInboundChannelAdapter.java
Copy file name to clipboardExpand all lines: spring-integration-websocket/src/test/java/org/springframework/integration/websocket/client/StompIntegrationTests.java
Copy file name to clipboardExpand all lines: spring-integration-websocket/src/test/java/org/springframework/integration/websocket/client/WebSocketClientTests.java
Copy file name to clipboardExpand all lines: spring-integration-websocket/src/test/java/org/springframework/integration/websocket/inbound/WebSocketInboundChannelAdapterTests.java
Copy file name to clipboardExpand all lines: spring-integration-websocket/src/test/java/org/springframework/integration/websocket/outbound/WebSocketOutboundMessageHandlerTests.java
Copy file name to clipboardExpand all lines: spring-integration-websocket/src/test/java/org/springframework/integration/websocket/server/WebSocketServerTests.java
-2Lines changed: 0 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,6 @@
20
20
importjava.util.Collections;
21
21
importjava.util.List;
22
22
23
-
importorg.junit.jupiter.api.Disabled;
24
23
importorg.junit.jupiter.api.Test;
25
24
importorg.mockito.Mockito;
26
25
@@ -118,7 +117,6 @@ public class WebSocketServerTests {
118
117
privateLifecyclerequestUpgradeStrategy;
119
118
120
119
@Test
121
-
@Disabled("TODO until the lastest fix from SF mitigation")
0 commit comments