devstack: fix aodh-api launch

This now uses the pbr wsgi_scripts facility, so the current command line is
invalid. Let's remove -v and -d as debug level is conrtolled by
$ENABLE_DEBUG_LOG_LEVEL. The configfile is hardcoded to the default location in
settings, so there's no neeed to pass it too.

Change-Id: I6d13c17d32017544b8fa8411fdef4af86a7b0a4d
Closes-Bug: #1620880
This commit is contained in:
Julien Danjou 2016-09-07 09:21:23 +02:00
parent 25d53a9b48
commit 3990c5b7e1
1 changed files with 1 additions and 1 deletions

View File

@ -324,7 +324,7 @@ function start_aodh {
elif [ "$AODH_DEPLOY" == "uwsgi" ]; then
run_process aodh-api "$AODH_BIN_DIR/uwsgi $AODH_UWSGI_FILE"
else
run_process aodh-api "$AODH_BIN_DIR/aodh-api -d -v --config-file $AODH_CONF"
run_process aodh-api "$AODH_BIN_DIR/aodh-api"
fi
# Only die on API if it was actually intended to be turned on