Always stop cyborg-api process uwsgi container

Right now, devstack/clean.sh always leaves an orphaned cyborg-api
service running. This makes us always stop it to avoid that.

Change-Id: I1c40804a7b20d54da3c09e613597c388e9f330f7
This commit is contained in:
Dan Smith 2020-02-25 07:35:44 -08:00 committed by Sean Mooney
parent f5a47abe5e
commit 96aa80acc4
1 changed files with 1 additions and 2 deletions

View File

@ -287,9 +287,8 @@ function stop_cyborg {
if [ "$CYBORG_USE_UWSGI" == "True" ]; then
disable_apache_site cyborg-api
restart_apache_server
else
stop_process cyborg-api
fi
stop_process cyborg-api
stop_process cyborg-cond
stop_process cyborg-agent
}