Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e9e5c85

Browse files
committedOct 14, 2024·
Start the server awareness
1 parent c7e3955 commit e9e5c85

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

‎pycrdt_websocket/yroom.py

+1
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,7 @@ async def start(
231231
self._task_group.start_soon(self._stopped.wait)
232232
self._task_group.start_soon(self._watch_ready)
233233
self._task_group.start_soon(self._broadcast_updates)
234+
self._task_group.start_soon(self.awareness.start)
234235
return
235236
except Exception as exception:
236237
self._handle_exception(exception)

‎pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ classifiers = [
3030
dependencies = [
3131
"anyio >=3.6.2,<5",
3232
"sqlite-anyio >=0.2.3,<0.3.0",
33-
"pycrdt >=0.10.1,<0.11.0",
33+
"pycrdt >=0.10.3,<0.11.0",
3434
]
3535

3636
[project.optional-dependencies]

0 commit comments

Comments
 (0)
Please sign in to comment.