fix: raise exception in internal_push_frame

This commit is contained in:
vipyne
2024-11-18 11:57:26 -06:00
parent 635aa6eb5b
commit e00c75ce3f

View File

@@ -246,6 +246,7 @@ class FrameProcessor:
await self._prev.queue_frame(frame, direction)
except Exception as e:
logger.exception(f"Uncaught exception in {self}: {e}")
raise Exception("internal_push_frame") from e
def __create_input_task(self):
self.__input_queue = asyncio.Queue()