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
Copy file name to clipboardExpand all lines: spring-messaging/src/main/java/org/springframework/messaging/simp/stomp/StompBrokerRelayMessageHandler.java
+27-27Lines changed: 27 additions & 27 deletions
Original file line number
Diff line number
Diff line change
@@ -292,10 +292,36 @@ public void handleMessage(Message<?> message) {
292
292
293
293
try {
294
294
if ((destination == null) || supportsDestination(destination)) {
295
+
295
296
if (logger.isTraceEnabled()) {
296
297
logger.trace("Processing message: " + message);
297
298
}
298
-
handleInternal(message, messageType, sessionId);
299
+
300
+
if (SimpMessageType.CONNECT.equals(messageType)) {
301
+
headers.setHeartbeat(0, 0); // TODO: disable for now
0 commit comments