mirror of https://github.com/OpenVidu/openvidu.git
openvidu-server: typo fixed in RpcHandler log
parent
f81735d7f9
commit
a604865f65
|
@ -783,7 +783,7 @@ public class RpcHandler extends DefaultJsonRpcHandler<JsonObject> {
|
||||||
exception.getMessage());
|
exception.getMessage());
|
||||||
if ("IOException".equals(exception.getClass().getSimpleName()) && exception.getCause() != null
|
if ("IOException".equals(exception.getClass().getSimpleName()) && exception.getCause() != null
|
||||||
&& "Broken pipe".equals(exception.getCause().getMessage())) {
|
&& "Broken pipe".equals(exception.getCause().getMessage())) {
|
||||||
log.warn("Parcipant with private id {} unexpectedly closed the websocket", rpcSession.getSessionId());
|
log.warn("Participant with private id {} unexpectedly closed the websocket", rpcSession.getSessionId());
|
||||||
}
|
}
|
||||||
if ("EOFException".equals(exception.getClass().getSimpleName())) {
|
if ("EOFException".equals(exception.getClass().getSimpleName())) {
|
||||||
// Store WebSocket connection interrupted exception for this web socket to
|
// Store WebSocket connection interrupted exception for this web socket to
|
||||||
|
|
Loading…
Reference in New Issue