From 3e43f013e3ba3410b8084750173a7dcdf694a387 Mon Sep 17 00:00:00 2001 From: R1kaB3rN <100738684+R1kaB3rN@users.noreply.github.com> Date: Tue, 19 Mar 2024 22:31:00 -0700 Subject: [PATCH] ulwgl_util: update timeout for thread - Ensure the timeout is at least as long as the runtime's timeout. --- ULWGL/ulwgl_util.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ULWGL/ulwgl_util.py b/ULWGL/ulwgl_util.py index 01ffafe59..d93bb6cd8 100644 --- a/ULWGL/ulwgl_util.py +++ b/ULWGL/ulwgl_util.py @@ -264,7 +264,7 @@ def _install_ulwgl( "../../../ULWGL/ulwgl_run.py" ) - thread.join(timeout=180) + thread.join(timeout=300) log.console("Completed.") @@ -417,7 +417,7 @@ def _update_ulwgl( json_local["ulwgl"]["versions"]["runner"] = val if thread: - thread.join(timeout=180) + thread.join(timeout=300) # Finally, update the local config file with local.joinpath(CONFIG).open(mode="w") as file: