From 29fed8b2a74c79f1900c077a76c070872a60a563 Mon Sep 17 00:00:00 2001 From: Ross Tannenbaum Date: Thu, 15 Aug 2024 15:37:03 -0700 Subject: [PATCH] fix: increase image poll timeout (#1609) --- .openshift-ci/pre_tests.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.openshift-ci/pre_tests.py b/.openshift-ci/pre_tests.py index f0a0cef26..3039fd27f 100644 --- a/.openshift-ci/pre_tests.py +++ b/.openshift-ci/pre_tests.py @@ -41,7 +41,8 @@ class PreSystemTests: PreSystemTests - System tests need images. """ - POLL_TIMEOUT = 60 * 60 + # Poll for 2 hours. + POLL_TIMEOUT = 120 * 60 def run(self): self.poll_for_images()