From df0f490e238c048e5286096fe662317abc303b10 Mon Sep 17 00:00:00 2001 From: David Zhao Date: Wed, 25 Dec 2024 12:12:15 -0800 Subject: [PATCH] remove request_id --- .../livekit-plugins-deepgram/livekit/plugins/deepgram/tts.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/livekit-plugins/livekit-plugins-deepgram/livekit/plugins/deepgram/tts.py b/livekit-plugins/livekit-plugins-deepgram/livekit/plugins/deepgram/tts.py index c866a56c2..401c26be7 100644 --- a/livekit-plugins/livekit-plugins-deepgram/livekit/plugins/deepgram/tts.py +++ b/livekit-plugins/livekit-plugins-deepgram/livekit/plugins/deepgram/tts.py @@ -391,7 +391,7 @@ async def _connection_timeout(): ) except asyncio.TimeoutError as e: - raise APITimeoutError(request_id=request_id) from e + raise APITimeoutError() from e except aiohttp.ClientResponseError as e: raise APIStatusError( message=e.message, @@ -400,7 +400,7 @@ async def _connection_timeout(): body=None, ) from e except Exception as e: - raise APIConnectionError(request_id=request_id) from e + raise APIConnectionError() from e finally: if ws is not None and not ws.closed: await ws.close()