[OVN] OVN agent should register "Chassis_Private" by default

The event "SbGlobalUpdateEvent", loaded by default in the Neutron OVN
Agent, reads from OVN SB "SB_Global" table and writes in the
"Chassis_Private" table. The last one is missing in the default tables
that are registered during the SB IDL initialization.

Closes-Bug: #2012385
Change-Id: I51d64375e69f27b265fbaba4d05a03a37c65929e
This commit is contained in:
Rodolfo Alonso Hernandez 2023-03-23 09:47:59 +01:00
parent 1646e5b28d
commit 2ccf1e1e90
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ class OVNNeutronAgent(service.Service):
def _load_sb_idl(self):
events = [SbGlobalUpdateEvent]
tables = ['SB_Global']
tables = ['SB_Global', 'Chassis_Private']
for extension in self.ext_manager:
events += extension.obj.sb_idl_events
tables += extension.obj.sb_idl_tables