Adding a sleep to see if that allow beacons to start and stop

This commit is contained in:
Gareth J. Greenaway 2023-08-31 15:35:16 -07:00 committed by Megan Wilhite
parent 319667147b
commit 04e566b13a

View file

@ -670,6 +670,9 @@ def test_pillar_refresh_pillar_beacons(
"saltutil.refresh_pillar", wait=True, minion_tgt=salt_minion.id
)
# Give the beacons a chance to start
time.sleep(5)
event_tag = f"salt/beacon/*/load/"
start_time = time.time()
@ -691,6 +694,9 @@ def test_pillar_refresh_pillar_beacons(
"saltutil.refresh_pillar", wait=True, minion_tgt=salt_minion.id
)
# Give the beacons a chance to stop
time.sleep(5)
event_tag = f"salt/beacon/*/load/"
start_time = time.time()