aboutsummaryrefslogtreecommitdiffstats
path: root/vid-automation
diff options
context:
space:
mode:
authorIttay Stern <ittay.stern@att.com>2019-10-10 08:22:51 +0000
committerGerrit Code Review <gerrit@onap.org>2019-10-10 08:22:51 +0000
commit012975b2349ba5cc7c8434195b59459b8b0a0e89 (patch)
treecaca5468c57dcd183cb92cb101c9fb12796bb592 /vid-automation
parente02ffbb580a3a8049baae4437871129d6e37c91a (diff)
parent4c8c2ac1d29e19d1cb935749af0d1c0063d5c0fd (diff)
Merge changes from topics "VID-30", "VID-37"
* changes: Add the "@Override" annotation. Replace "==" with "===".
Diffstat (limited to 'vid-automation')
0 files changed, 0 insertions, 0 deletions
ral.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
#!/bin/bash

curl localhost:9200/_cluster/health?pretty=true

echo "BE health-Check:"
curl http://localhost:8080/sdc2/rest/healthCheck

echo ""
echo ""
echo "FE health-Check:"
curl http://localhost:8181/sdc1/rest/healthCheck


echo ""
echo ""
res=`curl -s -X GET -H "Accept: application/json" -H "Content-Type: application/json" -H "USER_ID: jh0003" "http://localhost:8080/sdc2/rest/v1/user/demo" | wc -l`
if [[ ${res} != 0 ]]
then
    echo "Error [${res}] while user existance check"
    exit ${res}
fi
echo "check user existance: OK"