From: dglFromAtt Date: Fri, 1 Mar 2019 21:18:54 +0000 (+0000) Subject: Add env vars to script X-Git-Tag: 1.1.1~13 X-Git-Url: https://gerrit.onap.org/r/gitweb?p=dmaap%2Fbuscontroller.git;a=commitdiff_plain;h=80f10c41049ea22e914d4a17652abc1d3b502006 Add env vars to script Change-Id: I5484f88f0a624fa0d0ba430b13b71f8c4b0ee346 Signed-off-by: dglFromAtt Issue-ID: DMAAP-1046 --- diff --git a/dbc-client/misc/dbc-client b/dbc-client/misc/dbc-client index 42e7282..a812460 100644 --- a/dbc-client/misc/dbc-client +++ b/dbc-client/misc/dbc-client @@ -31,6 +31,7 @@ PATH=/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin export PATH CONFIGMAP_ROOT=${CONFIGMAP_ROOT:-/opt/app/config} CONTAINER_CONFIG=$CONFIGMAP_ROOT/conf/dbc-client.env +REQUESTID=${REQUESTID:-dbc-client} @@ -85,7 +86,7 @@ init() { while [ $rc != "200" ] do sleep 10 - rc=`curl -s -o /dev/null -I -w "%{http_code}" -X GET -H "Content-Type: application/json" http://dmaap-bc:8080/webapi/dmaap` + rc=`curl -s -o /dev/null -I -w "%{http_code}" -X GET -H "X-ECOMP-RequestID: $REQUESTID" -H "Content-Type: application/json" http://dmaap-bc:8080/webapi/dmaap` echo "get dmaap response=${rc}" done } @@ -94,21 +95,29 @@ doprov() { cd $CONFIGMAP_ROOT pwd # order is important in this next list - for uri in dmaap dcaeLocations mr_clusters topics feeds mr_clients dr_pubs dr_subs + for uri in dmaap dcaeLocations mr_clusters topics mr_clients dr_nodes feeds dr_pubs dr_subs do if [ -d ${uri} ] then for j in `ls ${uri}/*.json` do echo "POST $j to $uri" - rc=`curl -v -X POST -w "%{http_code}" -H "Content-Type: application/json" -d @${j} http://dmaap-bc:8080/webapi/${uri}` + rc=`curl -v -X POST -w "%{http_code}" -H "X-ECOMP-RequestID: $REQUESTID" -H "Content-Type: application/json" -d @${j} http://dmaap-bc:8080/webapi/${uri}` echo "response=$rc" done fi done } +delay() { + echo "DELAY=$DELAY" + if [ ! -z "$DELAY" ] + then + sleep $DELAY + fi +} set -x +delay config init doprov diff --git a/dbc-client/pom.xml b/dbc-client/pom.xml index 945eeee..d35ca48 100644 --- a/dbc-client/pom.xml +++ b/dbc-client/pom.xml @@ -173,7 +173,7 @@ 9.4.12.RC2 1.0.0 1.5.19 - 1.0.2 + 1.0.3 0.7.7.201606060606 3.2 diff --git a/dbc-client/version.properties b/dbc-client/version.properties index 895a84e..870d861 100644 --- a/dbc-client/version.properties +++ b/dbc-client/version.properties @@ -27,7 +27,7 @@ major=1 minor=0 -patch=2 +patch=3 base_version=${major}.${minor}.${patch} # Release must be completed with git revision # in Jenkins