Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down
2 changes: 1 addition & 1 deletion Framework/MainDriverApi.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Loading