Merge "Fix invalid test in cinder data migration script" into stable/train

This commit is contained in:
Zuul 2020-04-07 12:39:12 +00:00 committed by Gerrit Code Review
commit a2b0006626
2 changed files with 6 additions and 1 deletions

View File

@ -9,7 +9,7 @@ if [[ "${!KOLLA_BOOTSTRAP[@]}" ]]; then
fi
if [[ "${!KOLLA_OSM[@]}" ]]; then
if [[ -z ${MAX_NUMBER} ]]; then
if [[ "${!MAX_NUMBER[@]}" ]]; then
cinder-manage db online_data_migrations --max_count ${MAX_NUMBER}
else
cinder-manage db online_data_migrations

View File

@ -0,0 +1,5 @@
---
fixes:
- |
Fixes the MAX_NUMBER variable usage when running the database online
migrations for cinder.