From 95c7d83ea7fefbf812308407838d49f5c4b3b5a2 Mon Sep 17 00:00:00 2001 From: Henry Gessau Date: Mon, 30 May 2016 10:50:50 -0400 Subject: [PATCH] Use --subproject instead of deprecated --service option The --service option to neutron-db-manage is deprecated and will be removed soon. Use --subproject instead. Related-Bug: #1501380 Change-Id: I2f64634d6f01c06a071abf064caf11a134800d04 --- docker/neutron/neutron-lbaas-agent/extend_start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/neutron/neutron-lbaas-agent/extend_start.sh b/docker/neutron/neutron-lbaas-agent/extend_start.sh index 6a1f960363..117fa04856 100644 --- a/docker/neutron/neutron-lbaas-agent/extend_start.sh +++ b/docker/neutron/neutron-lbaas-agent/extend_start.sh @@ -3,6 +3,6 @@ # Bootstrap and exit if KOLLA_BOOTSTRAP variable is set. This catches all cases # of the KOLLA_BOOTSTRAP variable being set, including empty. if [[ "${!KOLLA_BOOTSTRAP[@]}" ]]; then - neutron-db-manage --service lbaas --config-file /etc/neutron/neutron.conf upgrade head + neutron-db-manage --subproject neutron-lbaas --config-file /etc/neutron/neutron.conf upgrade head exit 0 fi