ff42ff2004
The extend_start.sh script for cinder-api uses an incorrect test to check if the MAX_NUMBER variable is set. This leads to a incorrect cinder-manage command being run if this variable is not set, making the database migration fail. This change fixes the test to properly use the MAX_NUMBER variable. Change-Id: Ie46da709db0de09a9cf641b3c154275282f213fc Closes-Bug: #1866827
21 lines
512 B
Bash
21 lines
512 B
Bash
#!/bin/bash
|
|
set -o errexit
|
|
|
|
# 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
|
|
cinder-manage db sync
|
|
exit 0
|
|
fi
|
|
|
|
if [[ "${!KOLLA_OSM[@]}" ]]; then
|
|
if [[ "${!MAX_NUMBER[@]}" ]]; then
|
|
cinder-manage db online_data_migrations --max_count ${MAX_NUMBER}
|
|
else
|
|
cinder-manage db online_data_migrations
|
|
fi
|
|
exit 0
|
|
fi
|
|
|
|
. /usr/local/bin/kolla_httpd_setup
|