make the ss debug include all services

When things fail to shut down look for open sockets to all services
not just keystone, this seems to be a problem with more projects.

Change-Id: I003115e72a29e4c7f201ef2017795ace6a885ead
This commit is contained in:
Sean Dague 2015-04-23 09:59:51 -04:00
parent c679ec55ee
commit e78a3357a6
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ function ensure_services_stopped {
if [[ -n "$still_running" ]]; then
# TODO(sdague): work around because worlddump is apparently misconfigured
ps auxw
ss -p -t -o state established '( dport = :5000 or dport = :35357 )'
ss -p -t -o state established
die $LINENO "The following services are still running: $still_running"
fi
}