Remove the code which is unreachable

Currently, in neutron_protection_plugin, some code is
unreachable and will never be executed. This patch will
remove them.

Change-Id: I3ce4517368fc82aac4eb81c801d6f81a8536e169
This commit is contained in:
jiaopengju 2019-09-16 11:05:40 +08:00
parent 4108ed8260
commit 7fd5d54e2b
1 changed files with 0 additions and 10 deletions

View File

@ -78,8 +78,6 @@ class ProtectOperation(protection_plugin.Operation):
raise exception.GetProtectionNetworkSubResourceFailed(
type=self._SUPPORT_RESOURCE_TYPES,
reason=six.text_type(e))
else:
return []
def _get_resources_by_subnet(self, cntxt, neutron_client):
try:
@ -116,8 +114,6 @@ class ProtectOperation(protection_plugin.Operation):
raise exception.GetProtectionNetworkSubResourceFailed(
type=self._SUPPORT_RESOURCE_TYPES,
reason=six.text_type(e))
else:
return []
def _get_resources_by_port(self, cntxt, neutron_client):
try:
@ -153,8 +149,6 @@ class ProtectOperation(protection_plugin.Operation):
raise exception.GetProtectionNetworkSubResourceFailed(
type=self._SUPPORT_RESOURCE_TYPES,
reason=six.text_type(e))
else:
return []
def _get_resources_by_router(self, cntxt, neutron_client):
try:
@ -184,8 +178,6 @@ class ProtectOperation(protection_plugin.Operation):
raise exception.GetProtectionNetworkSubResourceFailed(
type=self._SUPPORT_RESOURCE_TYPES,
reason=six.text_type(e))
else:
return []
def _get_resources_by_security_group(self, cntxt, neutron_client):
try:
@ -211,8 +203,6 @@ class ProtectOperation(protection_plugin.Operation):
raise exception.GetProtectionNetworkSubResourceFailed(
type=self._SUPPORT_RESOURCE_TYPES,
reason=six.text_type(e))
else:
return []
def on_main(self, checkpoint, resource, context, parameters, **kwargs):
network_id = get_network_id(context)