diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2018-03-21 17:30:01 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-03-21 17:30:01 +0000 |
commit | 77993f19e5032f081f58f675f6928417df98c806 (patch) | |
tree | 865149847ad9a399c653a5baaea6076ed0618d02 /test/csit/plans/ccsdk/healthcheck/health_check.sh | |
parent | ad9ee61f28097d1a2ff11827bcbfe675f0a0012c (diff) | |
parent | 09cb034920097e2b65f500029df76c8ff7f398dc (diff) |
Merge "Fix SDNC and CCSDK CSIT issues"
Diffstat (limited to 'test/csit/plans/ccsdk/healthcheck/health_check.sh')
-rw-r--r-- | test/csit/plans/ccsdk/healthcheck/health_check.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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." |