From a667591b69661e14811419a6b63c4fad5f717ece Mon Sep 17 00:00:00 2001 From: "guillaume.lambert" Date: Fri, 9 Apr 2021 14:22:34 +0200 Subject: [PATCH] Increase controller startup timeout in func tests Many failures in the gate seem to appear because the controller does not start quickly enough. Signed-off-by: guillaume.lambert Change-Id: I24825131c48c017f4bcda79255bcdd27b17ab1cf --- tests/transportpce_tests/common/test_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/transportpce_tests/common/test_utils.py b/tests/transportpce_tests/common/test_utils.py index 12900c00c..246da5c0f 100644 --- a/tests/transportpce_tests/common/test_utils.py +++ b/tests/transportpce_tests/common/test_utils.py @@ -98,7 +98,7 @@ def start_tpce(): else: process = start_karaf() start_msg = KARAF_OK_START_MSG - if wait_until_log_contains(TPCE_LOG, start_msg, time_to_wait=60): + if wait_until_log_contains(TPCE_LOG, start_msg, time_to_wait=120): print("OpenDaylight started !") else: print("OpenDaylight failed to start !") -- 2.36.6