Skip to content

Commit

Permalink
extend the timeout for poor network (#14573)
Browse files Browse the repository at this point in the history
  • Loading branch information
yanpliu authored Mar 29, 2024
1 parent 85dd8bc commit 6481568
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions robottelo/utils/virtwho.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand All @@ -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()
Expand Down

0 comments on commit 6481568

Please sign in to comment.