From 1cedb128ea76cfc9d7178eed2b967f1c79c2c1ae Mon Sep 17 00:00:00 2001 From: Sabiha Khan Date: Wed, 25 Mar 2026 19:50:24 +0530 Subject: [PATCH] chore: increase timeout for pending variable extraction tasks --- 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: