Skip to content

Commit 9b0a2d3

Browse files
disable the ready_for_room_event since it is not ready
1 parent cbaaf8b commit 9b0a2d3

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

livekit-rtc/livekit/rtc/room.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -555,10 +555,11 @@ def on_participant_connected(participant):
555555
# start listening to room events
556556
self._task = self._loop.create_task(self._listen_task())
557557

558+
# TODO(sxian): Re-enable once a new livekit-ffi release includes ReadyForRoomEvent
558559
# Unblock the FFI server once this SDK is ready to receive room events.
559-
ready_req = proto_ffi.FfiRequest()
560-
ready_req.ready_for_room_event.room_handle = self._ffi_handle.handle
561-
FfiClient.instance.request(ready_req)
560+
# ready_req = proto_ffi.FfiRequest()
561+
# ready_req.ready_for_room_event.room_handle = self._ffi_handle.handle
562+
# FfiClient.instance.request(ready_req)
562563

563564
async def get_rtc_stats(self) -> RtcStats:
564565
if not self.isconnected():

0 commit comments

Comments
 (0)