Skip to content

Commit 3a64388

Browse files
authored
Merge pull request #224 from Quba1/master
Hotfix for #223
2 parents f0bf5d8 + 7e72d1a commit 3a64388

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## v2.2.12
4+
5+
* fix: should fix the broken build issue [491eeae](https://github.com/builder555/PineSAM/commit/491eeae1072acdcfde9787415c18605114799bb3)
6+
7+
## v2.2.11
8+
9+
* fix: on slower computers python might take longer to start [3879266](https://github.com/builder555/PineSAM/commit/3879266f8d07f1c1624a13e5635a8c99d8a8eefc)
10+
* fix: handle temp always in C (fixes #220) [433653f](https://github.com/builder555/PineSAM/commit/433653fd1ce8ea403f5836602794acefb2a35229)
11+
312
## v2.2.9
413

514
* fix: better type annotations [1cde711](https://github.com/builder555/PineSAM/commit/1cde711445b6886366559a021e03ce801a5d2d72)

backend/ws_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ def __init__(self, command_processor: CommandProcessor, ui_path: str):
135135

136136
async def serve(self, host: str, port: int):
137137
logging.info(f"Starting websocket server on {host}:{port}")
138-
await websockets.serve(
138+
await websockets.legacy.server.serve(
139139
self._ws_handler, host, port, create_protocol=make_protocol(self._ui_path)
140140
)
141141

0 commit comments

Comments
 (0)