From 5098cead4879f9a2b04d31a90f2e511993815681 Mon Sep 17 00:00:00 2001 From: Justin Pierce Date: Wed, 12 Apr 2023 09:22:06 -0400 Subject: [PATCH] Increase max timeout for builds Installer images can regularly take > 4 hours. --- doozerlib/brew.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doozerlib/brew.py b/doozerlib/brew.py index 062673f7d..e39577aff 100644 --- a/doozerlib/brew.py +++ b/doozerlib/brew.py @@ -65,7 +65,7 @@ def get_watch_task_info_copy(): def watch_task(session, log_f, task_id, terminate_event): - end = time.time() + 4 * 60 * 60 + end = time.time() + 6 * 60 * 60 watcher = koji_cli.lib.TaskWatcher( task_id, session,