Skip to content

Commit 1fe3e0c

Browse files
tomfitzhenrysnicoll
authored andcommitted
Fix typo in exception message: quite -> quiet
Closes gh-1547
1 parent c9d3c26 commit 1fe3e0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-messaging/src/main/java/org/springframework/messaging/simp/stomp/DefaultStompSession.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -693,7 +693,7 @@ private class ReadInactivityTask implements Runnable {
693693
@Override
694694
public void run() {
695695
closing = true;
696-
String error = "Server has gone quite. Closing connection in session id=" + sessionId + ".";
696+
String error = "Server has gone quiet. Closing connection in session id=" + sessionId + ".";
697697
if (logger.isDebugEnabled()) {
698698
logger.debug(error);
699699
}

0 commit comments

Comments
 (0)