From 2588956c5645952125606ac0067cf4a1ed7626fe Mon Sep 17 00:00:00 2001 From: Sabiha Khan <87858386+chewwbaka@users.noreply.github.com> Date: Wed, 25 Mar 2026 19:51:07 +0530 Subject: [PATCH] chore: increase timeout for pending variable extraction tasks (#208) --- api/services/workflow/pipecat_engine.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/services/workflow/pipecat_engine.py b/api/services/workflow/pipecat_engine.py index e28bc4d..d4590d8 100644 --- a/api/services/workflow/pipecat_engine.py +++ b/api/services/workflow/pipecat_engine.py @@ -471,7 +471,7 @@ class PipecatEngine: ) await _do_extraction() - async def _await_pending_extractions(self, timeout: float = 5.0) -> None: + async def _await_pending_extractions(self, timeout: float = 30.0) -> None: """Await all in-flight background extraction tasks. Args: