Add stubs for new ovsdbapp API functions
Neutron doesn't use these methods, but they will be added to ovsdbapp 1.0, and being abstractmethods, would cause an error. The methods are added in I664add660ce0ec3b0da23325ad38580d850e1f29 and I9352ffe0f245c579fd766ecd00e8ca512f806798. Change-Id: Ibfdea4890f7d01ddd38872db40a9829d6b6bdf90
This commit is contained in:
parent
9d616f075c
commit
3103a11f95
@ -311,6 +311,15 @@ class OvsdbVsctl(ovsdb.API):
|
||||
def list_ifaces(self, bridge):
|
||||
return MultiLineCommand(self.context, 'list-ifaces', args=[bridge])
|
||||
|
||||
def db_remove(self, table, record, column, *values, **keyvalues):
|
||||
raise NotImplementedError()
|
||||
|
||||
def db_find_rows(self, table, *conditions, **kwargs):
|
||||
raise NotImplementedError()
|
||||
|
||||
def db_list_rows(self, table, record=None, if_exists=False):
|
||||
raise NotImplementedError()
|
||||
|
||||
|
||||
def _set_colval_args(*col_values):
|
||||
args = []
|
||||
|
Loading…
Reference in New Issue
Block a user