We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Find out the cause and a workaround for #580
No thread should be running!
WebSocketServer.stop() is most likely to fast for the socket WebSocketServer.stop(timeout) has no effect
Connection lost timer started write(154): {GET / HTTP/1.1 Connection: Upgrade Host: localhost:16743 Sec-WebSocket-Key: 4yYtzNPhTBaHmHfAEJkwhw== Sec-WebSocket-Version: 13 Upgrade: websocket } process(154): {GET / HTTP/1.1 Connection: Upgrade Host: localhost:16743 Sec-WebSocket-Key: 4yYtzNPhTBaHmHfAEJkwhw== Sec-WebSocket-Version: 13 Upgrade: websocket } write(212): {HTTP/1.1 101 Web Socket Protocol Handshake Connection: Upgrade Date: Tue, 21 Nov 2017 20:26:39 GMT Sec-WebSocket-Accept: diOQ9h4YJOQF4MkREFq/U6mObOo= Server: TooTallNate Java-WebSocket Upgrade: websocket } open using draft: Draft_6455 extension: DefaultExtension protocol: process(212): {HTTP/1.1 101 Web Socket Protocol Handshake Connection: Upgrade Date: Tue, 21 Nov 2017 20:26:39 GMT Sec-WebSocket-Accept: diOQ9h4YJOQF4MkREFq/U6mObOo= Server: TooTallNate Java-WebSocket Upgrade: websocket } open using draft: Draft_6455 extension: DefaultExtension protocol: Connection lost timer started send frame: Framedata{ optcode:TEXT, fin:true, rsv1:false, rsv2:false, rsv3:false, payloadlength:[pos:0, len:4], payload:test} afterEnconding(4): {test} write(10): {��:I�8N,�L} process(10): {��:I�8N,�L} afterDecoding(4): {test} matched frame: Framedata{ optcode:TEXT, fin:true, rsv1:false, rsv2:false, rsv3:false, payloadlength:[pos:0, len:4], payload:test} send frame: Framedata{ optcode:CLOSING, fin:true, rsv1:false, rsv2:false, rsv3:false, payloadlength:[pos:0, len:2], payload:��}code: 1001 afterEnconding(2): {��} write(4): {����} Connection lost timer stopped
The text was updated successfully, but these errors were encountered:
Calling selectorthread.interrupt() will of course stop the sending the messages...
Sorry, something went wrong.
Gracefull shutdown on stop()
069e01b
This should solve the issue TooTallNate#620
marci4
Successfully merging a pull request may close this issue.
Find out the cause and a workaround for #580
Expected Behavior
No thread should be running!
Current Behavior
WebSocketServer.stop() is most likely to fast for the socket
WebSocketServer.stop(timeout) has no effect
Possible Solution
Steps to Reproduce (for bugs)
Debug log (for bugs)
Your Environment
The text was updated successfully, but these errors were encountered: