From b9cd71d8ebb904e043e109578bba73c1f5c849b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Laignel?= Date: Thu, 9 Mar 2023 11:56:32 +0100 Subject: [PATCH] net/aws/transcriber: fix eos not being sent For eos to be sent from the srcpad task loop, we need to go through `dequeue`. Part-of: --- net/aws/src/transcriber/imp.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/net/aws/src/transcriber/imp.rs b/net/aws/src/transcriber/imp.rs index b972372d..e4116d32 100644 --- a/net/aws/src/transcriber/imp.rs +++ b/net/aws/src/transcriber/imp.rs @@ -536,7 +536,6 @@ impl Transcriber { if notif.is_none() { // Transcriber loop terminated self.state.lock().unwrap().send_eos = true; - return; }; } _ = timeout => (),