tests: use the first IP address if more than 1 retruned from OpenStack

(cherry picked from commit 883a959442)
This commit is contained in:
Alexander Todorov 2018-12-07 13:21:33 +02:00 committed by Brian C. Lane
parent 963c7d8f89
commit a038f7d904
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ __EOF__
rlAssert0 "VM started successfully" $?
rlLogInfo "$response"
IP_ADDRESS=`echo "$response" | grep '"OS-EXT-IPS:type": "floating"' -A1 | grep '"addr":' | cut -f4 -d'"'`
IP_ADDRESS=`echo "$response" | grep '"OS-EXT-IPS:type": "floating"' -A1| grep '"addr":' | cut -f4 -d'"' | head -n 1`
rlLogInfo "Running instance IP_ADDRESS=$IP_ADDRESS"
rlLogInfo "Waiting 60sec for instance to initialize ..."