We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73b49d1 commit 2b83337Copy full SHA for 2b83337
livekit-rtc/livekit/rtc/room.py
@@ -747,9 +747,11 @@ def _on_room_event(self, event: proto_room.RoomEvent):
747
event.stream_header_received.participant_identity,
748
)
749
elif which == "stream_chunk_received":
750
- asyncio.gather(self._handle_stream_chunk(event.stream_chunk_received.chunk))
+ asyncio.create_task(
751
+ self._handle_stream_chunk(event.stream_chunk_received.chunk)
752
+ )
753
elif which == "stream_trailer_received":
- asyncio.gather(
754
755
self._handle_stream_trailer(event.stream_trailer_received.trailer)
756
757
0 commit comments