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 c46279d commit 5d7a1feCopy full SHA for 5d7a1fe
src/main/java/org/java_websocket/server/WebSocketServer.java
@@ -418,7 +418,7 @@ private void pushBuffer( ByteBuffer buf ) throws InterruptedException {
418
}
419
420
private void handleIOException( SelectionKey key, WebSocket conn, IOException ex ) {
421
- onWebsocketError( conn, ex );// conn may be null here
+ //onWebsocketError( conn, ex );// conn may be null here
422
if( conn != null ) {
423
conn.closeConnection( CloseFrame.ABNORMAL_CLOSE, ex.getMessage() );
424
} else if( key != null ) {
0 commit comments