mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-7436: Fix automation test on RvR status detection
Everytime when checking the RvR status, you must wait some time for RvR to update it's status. The polling thread would update the status only every 30 seconds by default.
This commit is contained in:
parent
8d5ce97edc
commit
ddf6fd2f9a
|
|
@ -1574,6 +1574,9 @@ class TestRvRRedundancy(cloudstackTestCase):
|
|||
"Vm should be in running state after deployment"
|
||||
)
|
||||
|
||||
# wait for VR to update state
|
||||
time.sleep(self.services["sleep"])
|
||||
|
||||
self.debug("Checking state of the backup router in %s" % self.network.name)
|
||||
routers = Router.list(
|
||||
self.apiclient,
|
||||
|
|
|
|||
Loading…
Reference in New Issue