From 8f19dd83e3753dc428e4f8c70f268e5d28138c72 Mon Sep 17 00:00:00 2001 From: Adit Sarfaty Date: Tue, 14 May 2019 08:29:49 +0300 Subject: [PATCH] NSX|V3+P: add context param to is_overlay_network abstract func The implementations in each plugin already have it. Change-Id: I0f075b8bb9c6343018bfcb7dac79528200d232d2 --- vmware_nsx/plugins/common_v3/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vmware_nsx/plugins/common_v3/plugin.py b/vmware_nsx/plugins/common_v3/plugin.py index 67d58d5839..d9c04a8558 100644 --- a/vmware_nsx/plugins/common_v3/plugin.py +++ b/vmware_nsx/plugins/common_v3/plugin.py @@ -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