Removing CancelledError handling from DeepgramSTTService.

This commit is contained in:
filipi87
2026-04-15 14:36:17 -03:00
parent aeab417cd1
commit 8e4fd10e0f

View File

@@ -633,8 +633,6 @@ class DeepgramSTTService(STTService):
self._keepalive_handler(), f"{self}::keepalive"
)
await connection.start_listening()
except asyncio.CancelledError:
raise
except Exception as e:
logger.warning(f"{self}: Connection lost, will retry: {e}")
finally: