diff options
author | Carlos Goncalves <carlos.goncalves@neclab.eu> | 2017-07-26 10:36:34 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-07-26 10:36:34 +0000 |
commit | 9eb18cabdddda3a2e0bbd05076bc1786ebe6be8b (patch) | |
tree | 71d5b4e735e5f3a72d85f8db630baca479d439ca /tests/run.sh | |
parent | 41fc677e7f6349d28ec938fe6ac9ff03e99894f1 (diff) | |
parent | 7e13330620e235e9611ed1b474bcfb33902797f5 (diff) |
Merge "Fix host status grep bug and Remove connection_pool argument"
Diffstat (limited to 'tests/run.sh')
-rwxr-xr-x | tests/run.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run.sh b/tests/run.sh index fda1e753..b838adab 100755 --- a/tests/run.sh +++ b/tests/run.sh @@ -48,7 +48,7 @@ as_admin_user="--os-username admin --os-project-name $DOCTOR_PROJECT get_compute_host_info() { # get computer host info which first VM boot in as admin user COMPUTE_HOST=$(openstack $as_admin_user server show ${VM_BASENAME}1 | - grep "OS-EXT-SRV-ATTR:host" | awk '{ print $4 }') + grep "OS-EXT-SRV-ATTR:host " | awk '{ print $4 }') compute_host_in_undercloud=${COMPUTE_HOST%%.*} die_if_not_set $LINENO COMPUTE_HOST "Failed to get compute hostname" |