From e53320e41123bd6219158208b4eac36f44d67cd2 Mon Sep 17 00:00:00 2001 From: ilanap Date: Mon, 4 Feb 2019 14:15:11 +0200 Subject: Fixes to docker run yet again since changes did not affect the changes in the merge build Change-Id: I71881fcfc556a0566bc2d05c6bc33a52d5873b10 Issue-ID: SDC-2028 Signed-off-by: ilanap --- .../sdc-catalog-be-setup/templates/default/check_Backend_Health.py.erb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'catalog-be/sdc-backend-init/chef-repo/cookbooks/sdc-catalog-be-setup/templates/default/check_Backend_Health.py.erb') diff --git a/catalog-be/sdc-backend-init/chef-repo/cookbooks/sdc-catalog-be-setup/templates/default/check_Backend_Health.py.erb b/catalog-be/sdc-backend-init/chef-repo/cookbooks/sdc-catalog-be-setup/templates/default/check_Backend_Health.py.erb index 49d8266630..60e2da16e7 100644 --- a/catalog-be/sdc-backend-init/chef-repo/cookbooks/sdc-catalog-be-setup/templates/default/check_Backend_Health.py.erb +++ b/catalog-be/sdc-backend-init/chef-repo/cookbooks/sdc-catalog-be-setup/templates/default/check_Backend_Health.py.erb @@ -6,6 +6,7 @@ from datetime import datetime beStat=0 BE_IP="<%= @be_ip %>" +BE_PORT="<%= @be_port %>" class bcolors: HEADER = '\033[95m' @@ -22,7 +23,7 @@ class bcolors: # Functions ############################## def checkBackend(): - command="curl -s -o /dev/null -I -w \"%{http_code}\" -i http://" + BE_IP + ":8080/sdc2/rest/v1/user/jh0003" + command="curl -s -o /dev/null -I -w \"%{http_code}\" -i http://" + BE_IP + ":" + BE_PORT + "/sdc2/rest/v1/user/jh0003" proc = subprocess.Popen( command , shell=True , stdout=subprocess.PIPE ) (out, err) = proc.communicate() -- cgit 1.2.3-korg