diff options
author | eh552t <eh552t@intl.att.com> | 2018-07-30 12:48:48 +0200 |
---|---|---|
committer | eh552t <eh552t@intl.att.com> | 2018-07-31 15:38:37 +0200 |
commit | 7edf080cc2a6f42be378864147157ec06a7ba050 (patch) | |
tree | 7047138d53b2bc8f5a63a5bee3cfcf4a96d21803 /test/csit/scripts/clamp/start_clamp_containers.sh | |
parent | 0b8db8f3fb19c3e41a901e76c930e7f2008239f4 (diff) |
Fix CSIT tests for auth login and api changes
Change-Id: I73146fd6ad81f8826014ef03ad3e5196b0ef952c
Signed-off-by: eh552t <eh552t@intl.att.com>
Issue-ID: CLAMP-129
Diffstat (limited to 'test/csit/scripts/clamp/start_clamp_containers.sh')
-rwxr-xr-x | test/csit/scripts/clamp/start_clamp_containers.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/csit/scripts/clamp/start_clamp_containers.sh b/test/csit/scripts/clamp/start_clamp_containers.sh index dc0b4fe41..23b1705e5 100755 --- a/test/csit/scripts/clamp/start_clamp_containers.sh +++ b/test/csit/scripts/clamp/start_clamp_containers.sh @@ -32,7 +32,7 @@ TIME_OUT=600 INTERVAL=5 TIME=0 while [ "$TIME" -lt "$TIME_OUT" ]; do - response=$(curl --write-out '%{http_code}' --silent --output /dev/null -vk --key config/org.onap.clamp.keyfile https://localhost:8443/restservices/clds/v1/clds/healthcheck); echo $response + response=$(curl --write-out '%{http_code}' --silent --output /dev/null -vk --key config/org.onap.clamp.keyfile https://localhost:8443/restservices/clds/v1/healthcheck); echo $response if [ "$response" == "200" ]; then echo Clamp and its database well started in $TIME seconds |