From e78a3357a6e33f1d0d69edcc96d20af97af58cc1 Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Thu, 23 Apr 2015 09:59:51 -0400 Subject: [PATCH] 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 --- inc/upgrade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/upgrade b/inc/upgrade index 05d06e53..ccf22e56 100644 --- a/inc/upgrade +++ b/inc/upgrade @@ -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 }