From 09cb034920097e2b65f500029df76c8ff7f398dc Mon Sep 17 00:00:00 2001 From: "Timoney, Dan (dt5972)" Date: Tue, 20 Mar 2018 10:23:53 -0400 Subject: Fix SDNC and CCSDK CSIT issues Fixed CCSDK and SDNC setup.sh scripts to use karaf client without -u arg (change for karaf 4), and to fix versions of containers used by SDNC CSIT script. Change-Id: I292e25d04b54d3e12696dab09ca007c97e632555 Issue-ID: SDNC-277 Signed-off-by: Timoney, Dan (dt5972) --- test/csit/plans/ccsdk/healthcheck/health_check.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/csit/plans/ccsdk/healthcheck/health_check.sh') diff --git a/test/csit/plans/ccsdk/healthcheck/health_check.sh b/test/csit/plans/ccsdk/healthcheck/health_check.sh index ffc766fe9..99f717a20 100644 --- a/test/csit/plans/ccsdk/healthcheck/health_check.sh +++ b/test/csit/plans/ccsdk/healthcheck/health_check.sh @@ -19,7 +19,7 @@ echo $SCRIPTS unset http_proxy https_proxy -response=$(curl --write-out '%{http_code}' --silent --output /dev/null -H "Authorization: Basic YWRtaW46S3A4Yko0U1hzek0wV1hsaGFrM2VIbGNzZTJnQXc4NHZhb0dHbUp2VXkyVQ==" -X POST -H "X-FromAppId: csit-sdnc" -H "X-TransactionId: csit-ccsdk" -H "Accept: application/json" -H "Content-Type: application/json" http://localhost:8383/restconf/operations/SLI-API:healthcheck ) +response=$(curl --write-out '%{http_code}' --silent --output /dev/null -H "Authorization: Basic YWRtaW46YWRtaW4=" -X POST -H "X-FromAppId: csit-sdnc" -H "X-TransactionId: csit-ccsdk" -H "Accept: application/json" -H "Content-Type: application/json" http://localhost:8383/restconf/operations/SLI-API:healthcheck ) if [ "$response" == "200" ]; then echo "CCSDK health check passed." -- cgit 1.2.3-korg