From 120a9f4c424f2a605d59d064feb9d8e40c191816 Mon Sep 17 00:00:00 2001 From: Tao Chen Date: Mon, 30 Mar 2026 09:41:41 -0700 Subject: [PATCH] Increase idle timeout --- .../sample_validation/create_dynamic_workflow_executor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/scripts/sample_validation/create_dynamic_workflow_executor.py b/python/scripts/sample_validation/create_dynamic_workflow_executor.py index 4cffd5c71b..44a7e5a0c5 100644 --- a/python/scripts/sample_validation/create_dynamic_workflow_executor.py +++ b/python/scripts/sample_validation/create_dynamic_workflow_executor.py @@ -292,7 +292,7 @@ class CreateConcurrentValidationWorkflowExecutor(Executor): instructions=AgentInstruction, default_options={ "on_permission_request": prompt_permission, - "timeout": 60, + "timeout": 120, }, # type: ignore ) agents.append(agent)