devstack: Move start_astara to after start_astara_hozizon

start_astara_horizon restarts apache to load the horizon plugin.
This also restarts keystone, which causes the initial boot loop
for the first router to fail when astara is started.  This moves
updates it to restart apache before starting astara, eliminating
the race.

Change-Id: Ibec39488024497ed5fab2abd1e32f5d1f9e39a68
This commit is contained in:
Adam Gandelman 2016-03-07 14:18:07 -08:00
parent 9092133d37
commit 4561f0f5e1
1 changed files with 1 additions and 1 deletions

View File

@ -348,10 +348,10 @@ if is_service_enabled astara; then
elif [[ "$1" == "stack" && "$2" == "extra" ]]; then
echo_summary "Initializing Astara"
pre_start_astara
start_astara
if is_service_enabled horizon; then
start_astara_horizon
fi
start_astara
post_start_astara
fi