We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27fdf56 commit 1de9426Copy full SHA for 1de9426
spring-websocket/src/main/java/org/springframework/web/socket/CloseStatus.java
@@ -145,7 +145,8 @@ public final class CloseStatus implements Serializable {
145
* client that may be done during normal shutdown.
146
* @since 4.0.3
147
*/
148
- public static final CloseStatus SESSION_NOT_RELIABLE = new CloseStatus(4500);
+ public static final CloseStatus SESSION_NOT_RELIABLE = new CloseStatus(4500)
149
+ .withReason("Failed to send message within the configured send limit");
150
151
152
private final int code;
0 commit comments