Fix nova-api extend_start.sh

Patch https://review.openstack.org/#/c/558765 added
an extra closure bracket }, this patch fixes it.

Change-Id: I379ff17856509c9321b86c13a72eacc18f5c1202
Closes-Bug: #1775698
This commit is contained in:
yatin 2018-06-11 12:29:50 +05:30
parent 91f5cca186
commit 6de3e68856
1 changed files with 2 additions and 2 deletions

View File

@ -9,13 +9,13 @@ if [[ "${!KOLLA_BOOTSTRAP[@]}" ]]; then
exit 0
fi
if [[ "${!KOLLA_UPGRADE[@]}}" ]]; then
if [[ "${!KOLLA_UPGRADE[@]}" ]]; then
nova-manage db sync
nova-manage api_db sync
exit 0
fi
if [[ "${!KOLLA_OSM[@]}}" ]]; then
if [[ "${!KOLLA_OSM[@]}" ]]; then
nova-manage db online_data_migrations
exit 0
fi