From f0e91bd5f9b4ccfac944f2252f927d807199c606 Mon Sep 17 00:00:00 2001 From: Tomas Repel Date: Wed, 24 Jan 2024 16:14:31 +0100 Subject: [PATCH] Wait timeout for expected config status increase --- testsuite/openshift/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testsuite/openshift/config.py b/testsuite/openshift/config.py index f8b2a28..5f458a9 100644 --- a/testsuite/openshift/config.py +++ b/testsuite/openshift/config.py @@ -58,7 +58,7 @@ def ports(self) -> dict[str, int]: ports[listener["name"]] = listener["address"]["socket_address"]["port_value"] return ports - def wait_status(self, status: Status, timeout=30): + def wait_status(self, status: Status, timeout=60): """Waits until config has the expected status""" with oc.timeout(timeout):