test: improve echo msg for smoke test

This commit is contained in:
zhongwencool 2023-09-21 11:44:45 +08:00
parent 2dfa7f9686
commit fa082b7a4d
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ check_api_docs() {
local status
status="$(curl -s -o /dev/null -w "%{http_code}" "$url")"
if [ "$status" != "200" ]; then
echo "emqx is not responding on $API_DOCS_URL"
echo "emqx return non-200 responses($status) on $url"
exit 1
fi
}