Merge "[OVN] Do not check L3 agents state with ML2/OVN"

This commit is contained in:
Zuul 2024-03-06 09:43:06 +00:00 committed by Gerrit Code Review
commit 468deaf6fb

View File

@ -236,7 +236,7 @@ class BaseTempestTestCase(base_api.BaseNetworkTest):
@classmethod
def _wait_for_router_ha_active(cls, router_id):
router = cls.os_admin.network_client.show_router(router_id)['router']
if not router.get('ha'):
if not router.get('ha') or cls.is_driver_ovn:
return
def _router_active_on_l3_agent():