mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
Fix regression in StompHeaderAccessor
Issue: SPR-16265
This commit is contained in:
+2
-1
@@ -194,7 +194,8 @@ public class StompHeaderAccessor extends SimpMessageHeaderAccessor {
|
||||
}
|
||||
StompCommand command = getCommand();
|
||||
if (command == null) {
|
||||
setHeader(COMMAND_HEADER, StompCommand.SEND);
|
||||
command = StompCommand.SEND;
|
||||
setHeader(COMMAND_HEADER, command);
|
||||
}
|
||||
else if (!command.equals(StompCommand.SEND)) {
|
||||
throw new IllegalStateException("Unexpected STOMP command " + command);
|
||||
|
||||
Reference in New Issue
Block a user