Merge "Remove the code which is unreachable"

This commit is contained in:
Zuul 2019-09-16 05:57:43 +00:00 committed by Gerrit Code Review
commit ef114e3f7a
1 changed files with 0 additions and 10 deletions

View File

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