Skip to content

Commit b4bc7e2

Browse files
committed
[BUGFIX] simple_websocket_server needs to poll
sigh... so much for no polling. guess i gotta write my own library now.
1 parent 178aadf commit b4bc7e2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

binary.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from simple_websocket_server import WebSocket
2020
from simple_websocket_server import WebSocketServer
2121

22-
BUILD_VERSION: str = "v0.2.6"
22+
BUILD_VERSION: str = "v0.2.7"
2323

2424
WINDOWS: bool = os.name == "nt"
2525
LOCALHOST: str = "127.0.0.1" if WINDOWS else "localhost"
@@ -427,7 +427,7 @@ class GhostWebSocketServer(WebSocketServer):
427427
# it's port number. Yes, I have seen the source code. It doesn't.
428428
def __init__(self, host, port, websocketclass, **kwargs):
429429
self.port = port
430-
super().__init__(host, port, websocketclass, select_interval=0, **kwargs)
430+
super().__init__(host, port, websocketclass, **kwargs)
431431

432432

433433
class Server:

binary_version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.2.6
1+
v0.2.7

0 commit comments

Comments
 (0)