TVD L2GW: support missing methods

Commit I253ceee343d829923b874057603a32ccd8c662f6 added missing
methods to the l2gw NSX drivers.
The same methods needs to be added tothe TVD driver as well.

Change-Id: I166b3c948f8e67fdfdb98178a16fb1e7b7819941
This commit is contained in:
Adit Sarfaty 2018-04-16 11:17:07 +03:00
parent f1907bf1f5
commit aceb11f922
1 changed files with 8 additions and 0 deletions

View File

@ -155,3 +155,11 @@ class NsxTvdL2GatewayDriver(l2gateway_db.L2GatewayMixin):
#Note(asarfaty): in postcommit the l2_gateway was already deleted
# so we cannot decide on the plugin by the project of the gw.
pass
def add_port_mac(self, context, port_dict):
"""Process a created Neutron port."""
pass
def delete_port_mac(self, context, port):
"""Process a deleted Neutron port."""
pass