DVR: remove unused method

Change-Id: I9d13993d899e2947c5f025100c98ee8934cc5c5d
This commit is contained in:
Oleg Bondarev 2015-07-02 12:18:47 +03:00
parent 49774afdc1
commit e173a31e3b
1 changed files with 0 additions and 6 deletions

View File

@ -18,7 +18,6 @@ from oslo_log import log as logging
from neutron.agent.l3 import dvr_fip_ns
from neutron.agent.l3 import dvr_snat_ns
from neutron.agent.l3 import namespaces
LOG = logging.getLogger(__name__)
@ -50,11 +49,6 @@ class AgentMixin(object):
return fip_ns
def _destroy_fip_namespace(self, ns):
ex_net_id = namespaces.get_id_from_ns_name(ns)
fip_ns = self.get_fip_ns(ex_net_id)
fip_ns.delete()
def get_ports_by_subnet(self, subnet_id):
return self.plugin_rpc.get_ports_by_subnet(self.context, subnet_id)