From: Cedric Brandily Date: Mon, 24 Aug 2015 20:24:10 +0000 (+0200) Subject: Remove out-of-tree vendor AGENT_TYPE_* constant X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=25e4e13565690fc4bc9e08e34598e18f04b921b7;p=openstack-build%2Fneutron-build.git Remove out-of-tree vendor AGENT_TYPE_* constant AGENT_TYPE_* constants[1] defines all agent types BUT the only vendor one(AGENT_TYPE_NEC) is only used in out-of-tree networking-nec repo. This changes removes out-of-tree AGENT_TYPE_NEC constant (dependant change defines it in networking-nec repo). [1] in neutron.extensions.portbindings Change-Id: Ia80c33ee7970cfe167c2c9ca6d512f23561455a2 Closes-Bug: #1487598 Depends-On: I955fa48ee2120900e422bab57db250303c3d7bb4 --- diff --git a/neutron/common/constants.py b/neutron/common/constants.py index b8277dbaf..6518d31a7 100644 --- a/neutron/common/constants.py +++ b/neutron/common/constants.py @@ -90,7 +90,6 @@ FLOODING_ENTRY = ('00:00:00:00:00:00', '0.0.0.0') AGENT_TYPE_DHCP = 'DHCP agent' AGENT_TYPE_OVS = 'Open vSwitch agent' AGENT_TYPE_LINUXBRIDGE = 'Linux bridge agent' -AGENT_TYPE_NEC = 'NEC plugin agent' AGENT_TYPE_OFA = 'OFA driver agent' AGENT_TYPE_L3 = 'L3 agent' AGENT_TYPE_LOADBALANCER = 'Loadbalancer agent'