Merge "Convert OvnDbNotifyHandler rows to frozen rows"

This commit is contained in:
Zuul 2021-02-16 12:18:27 +00:00 committed by Gerrit Code Review
commit 0959548d9b
1 changed files with 1 additions and 0 deletions

View File

@ -455,6 +455,7 @@ class OvnDbNotifyHandler(row_event.RowEventHandler):
pass
def notify(self, event, row, updates=None, global_=False):
row = idlutils.frozen_row(row)
matching = self.matching_events(event, row, updates, global_)
for match in matching:
self.notifications.put((match, event, row, updates))