processors(rtvi): fix task cleanup

This commit is contained in:
Aleix Conchillo Flaqué
2024-07-22 15:01:45 -07:00
parent 9233bb490c
commit 65cdf50774
5 changed files with 8 additions and 0 deletions

View File

@@ -204,6 +204,7 @@ class BaseOutputTransport(FrameProcessor):
try:
(frame, direction) = await self._push_queue.get()
await self.push_frame(frame, direction)
self._push_queue.task_done()
except asyncio.CancelledError:
break