We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cbaaf8b commit 9b0a2d3Copy full SHA for 9b0a2d3
1 file changed
livekit-rtc/livekit/rtc/room.py
@@ -555,10 +555,11 @@ def on_participant_connected(participant):
555
# start listening to room events
556
self._task = self._loop.create_task(self._listen_task())
557
558
+ # TODO(sxian): Re-enable once a new livekit-ffi release includes ReadyForRoomEvent
559
# Unblock the FFI server once this SDK is ready to receive room events.
- ready_req = proto_ffi.FfiRequest()
560
- ready_req.ready_for_room_event.room_handle = self._ffi_handle.handle
561
- FfiClient.instance.request(ready_req)
+ # ready_req = proto_ffi.FfiRequest()
+ # ready_req.ready_for_room_event.room_handle = self._ffi_handle.handle
562
+ # FfiClient.instance.request(ready_req)
563
564
async def get_rtc_stats(self) -> RtcStats:
565
if not self.isconnected():
0 commit comments