From 4670370dbb0ec9542b499514782b2b01ad49c120 Mon Sep 17 00:00:00 2001 From: Mark Backman Date: Sat, 28 Mar 2026 00:02:35 -0400 Subject: [PATCH] Add changelog for #4186 --- changelog/4186.fixed.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelog/4186.fixed.md diff --git a/changelog/4186.fixed.md b/changelog/4186.fixed.md new file mode 100644 index 000000000..1ca3f1122 --- /dev/null +++ b/changelog/4186.fixed.md @@ -0,0 +1 @@ +- Fixed `FastAPIWebsocketTransport` intermittently hanging on shutdown when the remote side (e.g. Twilio) disconnects while audio is being sent. A race condition between the send and receive paths could cause the `on_client_disconnected` callback to be skipped, leaving the pipeline waiting for a disconnect signal that never came.