Merge remote-tracking branch 'apache/4.19' into 4.20

This commit is contained in:
Wei Zhou 2025-09-02 08:24:20 +02:00
commit 973b333e40
No known key found for this signature in database
GPG Key ID: 1503DFE7C8226103
1 changed files with 5 additions and 2 deletions

View File

@ -612,10 +612,13 @@ class TestVPCRedundancy(cloudstackTestCase):
time.sleep(total_sleep) time.sleep(total_sleep)
# Router will be in FAULT state, i.e. keepalived is stopped # Router will be in UNKNOWN state, i.e. keepalived is stopped
self.check_routers_state(status_to_check="FAULT", expected_count=2) self.check_routers_state(status_to_check="UNKNOWN", expected_count=2)
self.start_vm() self.start_vm()
# Routers will be in PRIMARY/BACKUP state
self.check_routers_state(status_to_check="PRIMARY") self.check_routers_state(status_to_check="PRIMARY")
self.check_routers_state(status_to_check="BACKUP")
@attr(tags=["advanced", "intervlan"], required_hardware="true") @attr(tags=["advanced", "intervlan"], required_hardware="true")
def test_05_rvpc_multi_tiers(self): def test_05_rvpc_multi_tiers(self):