Compare commits

...

1 Commits

Author SHA1 Message Date
Mark Backman
c6235a34a9 fix: add missing asyncio import to SentryMetrics 2025-08-26 20:55:52 -04:00
2 changed files with 6 additions and 2 deletions

View File

@@ -93,6 +93,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed ### Fixed
- Fixed a missing import in `SentryMetrics`.
- Fixed a `CartesiaTTSService` issue that was causing the application to hang - Fixed a `CartesiaTTSService` issue that was causing the application to hang
after Cartesia's 5 minutes timed out. after Cartesia's 5 minutes timed out.

View File

@@ -6,6 +6,8 @@
"""Sentry integration for frame processor metrics.""" """Sentry integration for frame processor metrics."""
import asyncio
from loguru import logger from loguru import logger
from pipecat.utils.asyncio.task_manager import BaseTaskManager from pipecat.utils.asyncio.task_manager import BaseTaskManager