From 36604c71a72b1023ad412ccd4ab694647817f9a9 Mon Sep 17 00:00:00 2001 From: Yuli Shlosberg Date: Sun, 25 Feb 2018 16:03:45 +0200 Subject: update template files Change-Id: I495fcb8c6cfced09a921834f2ea730b519f453db Issue-ID: SDC-920 Signed-off-by: Yuli Shlosberg --- .../cookbooks/sdc-catalog-be/templates/default/ready-probe.sh.erb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'catalog-be') diff --git a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/ready-probe.sh.erb b/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/ready-probe.sh.erb index 5239e9bdef..26f72664b7 100644 --- a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/ready-probe.sh.erb +++ b/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/ready-probe.sh.erb @@ -1,6 +1,8 @@ #!/bin/bash -health_Check_http_code=$(curl --max-time 5 -o /dev/null -w '%{http_code}' http://localhost:8080/sdc2/rest/healthCheck) +set -x + +health_Check_http_code=$(curl --max-time 5 -o /dev/null -w '%{http_code}' http://127.0.0.1:8080/sdc2/rest/healthCheck) if [[ "$health_Check_http_code" -eq 500 ]]; then exit 200 else -- cgit 1.2.3-korg