diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2018-10-02 16:46:36 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-10-02 16:46:36 +0000 |
commit | ed9df29ed6ea2ac0310cfb37318cdd5d126b85dd (patch) | |
tree | c03cbc198e78324c5f8e60b82c499790896fc65e /scripts | |
parent | d33a9efbc12d3128b8d7b7427079beb74c4f84b4 (diff) | |
parent | fd98e3c936c4d3a0695dfee1af25e741bd892178 (diff) |
Merge "Change to AAF-compatible default credentials"
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/policy/script1.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/policy/script1.sh b/scripts/policy/script1.sh index b38401e3..70706921 100755 --- a/scripts/policy/script1.sh +++ b/scripts/policy/script1.sh @@ -147,7 +147,7 @@ TIME_OUT=600 INTERVAL=20 TIME=0 while [ "$TIME" -lt "$TIME_OUT" ]; do - curl -k -i --user healthcheck:zb!XztG34 -H "ContentType: application/json" -H "Accept: application/json" https://${POLICY_IP}:6969/healthcheck && break + curl -k -i --user "demo@people.osaaf.org:demo123456!" -H "ContentType: application/json" -H "Accept: application/json" https://${POLICY_IP}:6969/healthcheck && break echo Sleep: $INTERVAL seconds before testing if Policy is up. Total wait time up now is: $TIME seconds. Timeout is: $TIME_OUT seconds sleep $INTERVAL |