From 21e3d1e55b3140e8b14105df05c1e5253a3d04ec Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Fri, 6 May 2016 12:35:22 -0400 Subject: [PATCH] Make wait_for_service more robust by checking HTTP response wait_for_service just checked to see if the remote service was started, not that it was returning data. This caused problems when the service was behind a proxy because the proxy would respond quickly but the service may not have fully started. Wait for a non-503 HTTP response code and non-7 exit code (connection error) from curl Return an error if a successful connection cannot be made. Change-Id: I059a12b1b920f703f28aca0e2f352714118dee97 --- functions | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/functions b/functions index aa12e1e826..46a7d414a1 100644 --- a/functions +++ b/functions @@ -381,12 +381,24 @@ CURL_GET="${CURL_GET:-curl -g}" # Wait for an HTTP server to start answering requests # wait_for_service timeout url +# +# If the service we want is behind a proxy, the proxy may be available +# before the service. Compliant proxies will return a 503 in this case +# Loop until we get something else. +# Also check for the case where there is no proxy and the service just +# hasn't started yet. curl returns 7 for Failed to connect to host. function wait_for_service { local timeout=$1 local url=$2 + local rval=0 time_start "wait_for_service" - timeout $timeout sh -c "while ! $CURL_GET -k --noproxy '*' -s $url >/dev/null; do sleep 1; done" + timeout $timeout bash -x <