summaryrefslogtreecommitdiff
path: root/turbo_hipster/task_plugins/real_db_upgrade/nova_mysql_migrations.sh
diff options
context:
space:
mode:
Diffstat (limited to 'turbo_hipster/task_plugins/real_db_upgrade/nova_mysql_migrations.sh')
-rwxr-xr-xturbo_hipster/task_plugins/real_db_upgrade/nova_mysql_migrations.sh7
1 files changed, 4 insertions, 3 deletions
diff --git a/turbo_hipster/task_plugins/real_db_upgrade/nova_mysql_migrations.sh b/turbo_hipster/task_plugins/real_db_upgrade/nova_mysql_migrations.sh
index 2a15bda..945ef83 100755
--- a/turbo_hipster/task_plugins/real_db_upgrade/nova_mysql_migrations.sh
+++ b/turbo_hipster/task_plugins/real_db_upgrade/nova_mysql_migrations.sh
@@ -186,10 +186,11 @@ stable_release_db_sync() {
if [ $version -lt "234" ]
then
echo "Database is from Havana! Upgrade via Icehouse"
- git branch -D stable/icehouse || true
+ git branch -D eol/icehouse || true
git remote update
- git checkout -b stable/icehouse
- git reset --hard remotes/origin/stable/icehouse
+ git checkout -b eol/icehouse
+ # Use tag
+ git reset --hard icehouse-eol
pip_requires
db_sync "icehouse"
fi