Changing check of mistral availability in functional tests

Depends-On: I7170121a1216d9d72a43e552db1864a58e4c6237

Change-Id: Ib0368f15b0b47dca377bb55c060de4837458a9e5
This commit is contained in:
Nikolay Mahotkin
2015-07-17 14:24:58 +03:00
parent c67c49a018
commit fc140dbe05

View File

@@ -15,7 +15,7 @@
# How many seconds to wait for the API to be responding before giving up
API_RESPONDING_TIMEOUT=20
if ! timeout ${API_RESPONDING_TIMEOUT} sh -c "while ! curl -s http://127.0.0.1:8989/v2/ 2>/dev/null | grep -q 'Authentication required' ; do sleep 1; done"; then
if ! timeout ${API_RESPONDING_TIMEOUT} sh -c "until curl --output /dev/null --silent --head --fail http://localhost:8989; do sleep 1; done"; then
echo "Mistral API failed to respond within ${API_RESPONDING_TIMEOUT} seconds"
exit 1
fi