From 783842d087d734c524f1d2d6920600e61cc6c171 Mon Sep 17 00:00:00 2001 From: Eric K Date: Thu, 2 Aug 2018 17:58:59 -0700 Subject: [PATCH] devstack check neutron-qos available check neutron-qos available before adding neutron_qos data source to Congress. Avoids the data source update errors arising from adding the data source when the qos extension is not available. Release-team: devstack plugin change only Change-Id: Ie5b10b20f11f109bb7159d43a0f5303508b00f78 --- devstack/plugin.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/devstack/plugin.sh b/devstack/plugin.sh index 7e90d4425..689145f6f 100755 --- a/devstack/plugin.sh +++ b/devstack/plugin.sh @@ -68,7 +68,7 @@ function configure_congress { function configure_congress_datasources { _configure_service neutron neutronv2 - _configure_service neutron neutronv2_qos + _configure_service neutron-qos neutronv2_qos _configure_service nova nova _configure_service key keystonev3 _configure_service cinder cinder @@ -94,7 +94,7 @@ function _configure_tempest { # set correctly due to different env setup scenario, so it is # better to set it explicitly here. local service - local required_services="heat,ironic,aodh,murano,mistral,monasca" + local required_services="heat,ironic,aodh,murano,mistral,monasca,neutron-qos" for service in ${required_services//,/ }; do if is_service_enabled $service ; then iniset $TEMPEST_CONFIG service_available $service "True"