Merge "[test] test_trunk-limit the "ip address" command execution"

This commit is contained in:
Zuul 2022-12-19 22:07:26 +00:00 committed by Gerrit Code Review
commit 18b6a2fdcd
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ class RebootTrunkTest(testtools.TestCase):
"""Check Nova server VLAN port IP addresses"""
self.stack.ensure_server_status('ACTIVE')
expected = set(self.stack.list_vlan_fixed_ips())
for attempt in tobiko.retry():
for attempt in tobiko.retry(timeout=300, interval=10):
actual = set(ip.list_ip_addresses(device=self.stack.vlan_device,
ssh_client=self.stack.ssh_client,
scope='global'))