NSX|V3+P: add context param to is_overlay_network abstract func

The implementations in each plugin already have it.

Change-Id: I0f075b8bb9c6343018bfcb7dac79528200d232d2
This commit is contained in:
Adit Sarfaty 2019-05-14 08:29:49 +03:00
parent 9ea4a311b9
commit 8f19dd83e3

View File

@ -861,7 +861,7 @@ class NsxPluginV3Base(agentschedulers_db.AZDhcpAgentSchedulerDbMixin,
# Check the host-switch-mode of the TZ connected to the ports network
return self._is_ens_tz_net(context, port_data['network_id'])
def _is_overlay_network(self, network_id):
def _is_overlay_network(self, context, network_id):
"""Should be implemented by each plugin"""
pass