From 7676b079e6b812b16ac63d753d27853e75732d69 Mon Sep 17 00:00:00 2001 From: Serguei Bezverkhi Date: Sun, 3 Apr 2016 17:35:25 -0400 Subject: [PATCH] Adds migration step from nova to nova_api database This patch adds a missing required step to migrate information from the nova to the new nova_api database. Closes-Bug: #1565497 Change-Id: Ia1554e12c688e5a6509af2d37f1825fd4ab666be Co-Authored-By: Steven Dake --- docker/nova/nova-api/extend_start.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/nova/nova-api/extend_start.sh b/docker/nova/nova-api/extend_start.sh index c7bc9c8624..6878a7672b 100644 --- a/docker/nova/nova-api/extend_start.sh +++ b/docker/nova/nova-api/extend_start.sh @@ -5,5 +5,6 @@ if [[ "${!KOLLA_BOOTSTRAP[@]}" ]]; then nova-manage db sync nova-manage api_db sync + nova-manage db online_data_migrations exit 0 fi