diff --git a/neutron/agent/l2/extensions/manager.py b/neutron/agent/l2/extensions/manager.py index 181de860f58..3549cd47019 100644 --- a/neutron/agent/l2/extensions/manager.py +++ b/neutron/agent/l2/extensions/manager.py @@ -66,7 +66,6 @@ class AgentExtensionsManager(stevedore.named.NamedExtensionManager): for extension in self: try: extension.obj.handle_port(context, data) - # TODO(QoS) add agent extensions exception and catch them here except AttributeError: LOG.exception( _LE("Agent Extension '%(name)s' failed " @@ -79,8 +78,6 @@ class AgentExtensionsManager(stevedore.named.NamedExtensionManager): for extension in self: try: extension.obj.delete_port(context, data) - # TODO(QoS) add agent extensions exception and catch them here - # instead of AttributeError except AttributeError: LOG.exception( _LE("Agent Extension '%(name)s' failed "