From efd27deae0e85d953e5602dc910c1fd95457c51d Mon Sep 17 00:00:00 2001 From: Satellite QE <115476073+Satellite-QE@users.noreply.github.com> Date: Fri, 29 Mar 2024 09:15:41 -0400 Subject: [PATCH] [6.15.z] extend the timeout for poor network (#14576) extend the timeout for poor network (#14573) (cherry picked from commit 64815689ecffae197b099099338324bc56931fc5) Co-authored-by: yanpliu --- robottelo/utils/virtwho.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/robottelo/utils/virtwho.py b/robottelo/utils/virtwho.py index e159a487394..b1cac0012ca 100644 --- a/robottelo/utils/virtwho.py +++ b/robottelo/utils/virtwho.py @@ -210,7 +210,7 @@ def check_message_in_rhsm_log(message): """Check the message exist in /var/log/rhsm/rhsm.log""" wait_for( lambda: 'Host-to-guest mapping being sent to' in get_rhsm_log(), - timeout=10, + timeout=20, delay=2, ) logs = get_rhsm_log() @@ -230,7 +230,7 @@ def _get_hypervisor_mapping(hypervisor_type): """ wait_for( lambda: 'Host-to-guest mapping being sent to' in get_rhsm_log(), - timeout=10, + timeout=20, delay=2, ) logs = get_rhsm_log()