Merge "[OVN] Check for lock in check_for_mcast_flood_reports"

This commit is contained in:
Zuul 2021-05-05 13:01:52 +00:00 committed by Gerrit Code Review
commit 4d26c3a544
1 changed files with 3 additions and 0 deletions

View File

@ -667,6 +667,9 @@ class DBInconsistenciesPeriodics(SchemaAwarePeriodicsBase):
# once per lock due to the use of periodics.NeverAgain(). # once per lock due to the use of periodics.NeverAgain().
@periodics.periodic(spacing=600, run_immediately=True) @periodics.periodic(spacing=600, run_immediately=True)
def check_for_mcast_flood_reports(self): def check_for_mcast_flood_reports(self):
if not self.has_lock:
return
cmds = [] cmds = []
for port in self._nb_idl.lsp_list().execute(check_error=True): for port in self._nb_idl.lsp_list().execute(check_error=True):
port_type = port.type.strip() port_type = port.type.strip()