Merge pull request #778 from pipecat-ai/aleix/transports-disconnect-on-last-transport

transports: fix premature input transport closing
This commit is contained in:
Aleix Conchillo Flaqué
2024-12-04 19:08:23 -08:00
committed by GitHub
3 changed files with 25 additions and 11 deletions

View File

@@ -57,6 +57,10 @@ async def on_audio_data(processor, audio, sample_rate, num_channels):
### Fixed
- Fixed a `DailyTransport` and `LiveKitTransport` issue where connections were
being closed in the input transport prematurely. This was causing frames
queued inside the pipeline being discarded.
- Fixed an issue in `DailyTransport` that would cause some internal callbacks to
not be executed.