From f35d1c5c50dccbef1a2e079f967b82f0df0e22e9 Mon Sep 17 00:00:00 2001 From: Adelina Tuvenie Date: Thu, 27 Aug 2015 02:27:28 -0700 Subject: [PATCH] Fixes wrong neutron Hyper-V Agent name in constants Change Id03fb147e11541be309c1cd22ce27e70fadc28b5 moved the AGENT_TYPE_HYPERV constant from common.constants to plugins.ml2.drivers.hyperv.constants but change the value of the constant from 'HyperV agent' to 'hyperv'. This patch changes the name back to 'HyperV agent' Change-Id: If74b4b2a84811e266c8b12e70bf6bfe74ed4ea21 Partial-Bug: #1487598 --- neutron/plugins/ml2/drivers/hyperv/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neutron/plugins/ml2/drivers/hyperv/constants.py b/neutron/plugins/ml2/drivers/hyperv/constants.py index 1eaa1001e..2783ac4c2 100644 --- a/neutron/plugins/ml2/drivers/hyperv/constants.py +++ b/neutron/plugins/ml2/drivers/hyperv/constants.py @@ -13,5 +13,5 @@ # License for the specific language governing permissions and limitations # under the License. -AGENT_TYPE_HYPERV = 'hyperv' +AGENT_TYPE_HYPERV = 'HyperV agent' VIF_TYPE_HYPERV = 'hyperv' -- 2.45.2