Merge "Fix nailgun status check" into stable/7.0

This commit is contained in:
Jenkins
2016-09-29 11:45:42 +00:00
committed by Gerrit Code Review

View File

@@ -69,7 +69,7 @@ run_server() {
local http_code=$(curl -s -w %{http_code} -o /dev/null $check_url)
if [[ "$http_code" = "200" ]]; then return 0; fi
if [[ "$http_code" != "000" ]]; then return 0; fi
sleep 0.1
i=$((i + 1))