From c2ab002a237489fd4a44369c26d5fbb17fa85dcd Mon Sep 17 00:00:00 2001 From: mdshakib007 Date: Mon, 22 Jun 2026 21:31:58 +0600 Subject: [PATCH] changed default time from 300 to 1800 --- .../Sequential_Actions/sequential_actions.py | 2 +- Framework/MainDriverApi.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Framework/Built_In_Automation/Sequential_Actions/sequential_actions.py b/Framework/Built_In_Automation/Sequential_Actions/sequential_actions.py index 22a5813c..9761dfdb 100755 --- a/Framework/Built_In_Automation/Sequential_Actions/sequential_actions.py +++ b/Framework/Built_In_Automation/Sequential_Actions/sequential_actions.py @@ -97,7 +97,7 @@ # thread that is stuck inside a blocking call, so on timeout we stop waiting, # abandon the worker (it is a daemon thread, so it never blocks node shutdown), # spin up a fresh worker for the next action, and report the step as failed. -_DEFAULT_ACTION_TIMEOUT = 300 +_DEFAULT_ACTION_TIMEOUT = 1800 _action_worker = None _action_worker_local = threading.local() diff --git a/Framework/MainDriverApi.py b/Framework/MainDriverApi.py index e95ae265..8ef03a49 100644 --- a/Framework/MainDriverApi.py +++ b/Framework/MainDriverApi.py @@ -1004,7 +1004,7 @@ def run_test_case( # Variable"; set to 0 to disable. The Test_Shared_Variables guard keeps a # user/runtime-supplied value from being overwritten by this default. if not shared.Test_Shared_Variables("action_timeout"): - shared.Set_Shared_Variables("action_timeout", 300) + shared.Set_Shared_Variables("action_timeout", 1800) _color = "white" # danger_style = Style(color=_color, blink=False, bold=True)