Permalink
Browse files

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
  • Loading branch information...
1 parent 25d53a9 commit 3990c5b7e1bb783092166bebf060e7846757c824 @jd jd committed Sep 7, 2016
Showing with 1 addition and 1 deletion.
  1. +1 −1 devstack/plugin.sh
View
@@ -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

0 comments on commit 3990c5b

Please sign in to comment.