openvidu-server: typo fixed in RpcHandler log

pull/669/head
pabloFuente 2021-11-11 12:01:55 +01:00
parent f81735d7f9
commit a604865f65
1 changed files with 1 additions and 1 deletions

View File

@ -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