mirror of
https://github.com/jetty/jetty.project.git
synced 2025-03-04 21:09:13 +00:00
Fixing endpoint.fillInterested() missing piece
This commit is contained in:
parent
9011b0713d
commit
e47c47f071
@ -341,6 +341,7 @@ public class WebSocketServerFactory extends AbstractLifeCycle implements WebSock
|
||||
AsyncWebSocketConnection connection = new AsyncWebSocketConnection(endp,executor,websocket.getPolicy());
|
||||
endp.setAsyncConnection(connection);
|
||||
connection.getParser().addListener(websocket);
|
||||
|
||||
LOG.debug("EndPoint: {}",endp);
|
||||
LOG.debug("Connection: {}",connection);
|
||||
|
||||
@ -353,6 +354,7 @@ public class WebSocketServerFactory extends AbstractLifeCycle implements WebSock
|
||||
// Process (version specific) handshake response
|
||||
LOG.debug("Handshake Response: {}",handshaker);
|
||||
handshaker.doHandshakeResponse(request,response,extensions);
|
||||
connection.fillInterested();
|
||||
LOG.debug("Handshake Complete: {}",connection);
|
||||
|
||||
// Add connection
|
||||
|
Loading…
x
Reference in New Issue
Block a user