Merge "[OVN] Do not check L3 agents state with ML2/OVN"
diff --git a/neutron_tempest_plugin/scenario/base.py b/neutron_tempest_plugin/scenario/base.py
index 9d53f79..021b3b7 100644
--- a/neutron_tempest_plugin/scenario/base.py
+++ b/neutron_tempest_plugin/scenario/base.py
@@ -236,7 +236,7 @@
@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():