Fix typo in exception message: quite -> quiet
Closes gh-1547
This commit is contained in:
parent
1bf3e7c021
commit
1a1d767d59
|
|
@ -670,7 +670,7 @@ public class DefaultStompSession implements ConnectionHandlingStompSession {
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
closing = true;
|
closing = true;
|
||||||
String error = "Server has gone quite. Closing connection in session id=" + sessionId + ".";
|
String error = "Server has gone quiet. Closing connection in session id=" + sessionId + ".";
|
||||||
if (logger.isDebugEnabled()) {
|
if (logger.isDebugEnabled()) {
|
||||||
logger.debug(error);
|
logger.debug(error);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue