Fix for Cassandra init 59/90359/4
authorOfir Sonsino <os0695@intl.att.com>
Sun, 23 Jun 2019 13:20:50 +0000 (16:20 +0300)
committerOren Kleks <orenkle@amdocs.com>
Thu, 27 Jun 2019 12:57:29 +0000 (12:57 +0000)
Change-Id: If266342c3c126d79e5d99a70f4ed3908e4e7a166
Issue-ID: SDC-2371
Signed-off-by: Ofir Sonsino <os0695@intl.att.com>
openecomp-be/dist/sdc-onboard-db-init-docker/artifacts/startup.sh

index 9e2c489..c806102 100644 (file)
@@ -14,11 +14,25 @@ if [ ! -z "${CS_HOST_PORT}" ]; then
 fi
 
 echo "[Info] Going to initialize sdc onboard cassandra: user=$SDC_USER; host=$CS_HOST; port=$CS_PORT"
+
 echo "[Info] Initializing onboard keyspaces"
+date;
 cqlsh -u $SDC_USER -p $SDC_PASSWORD -f init_keyspaces.cql $CS_HOST $CS_PORT
+date;
+
+rc=$?
+if [[ $rc != 0 ]]; then 
+       echo "[Error] Failed to initialize onboard keyspaces"; 
+       exit $rc; 
+fi
 
 echo "[Info] Initializing onboard schemas"
+date;
 cqlsh -u $SDC_USER -p $SDC_PASSWORD -f init_schemas.cql $CS_HOST $CS_PORT
+date;
 
 rc=$?
-if [[ $rc != 0 ]]; then exit $rc; fi
\ No newline at end of file
+if [[ $rc != 0 ]]; then 
+       echo "[Error] Failed to initialize onboard schemas"; 
+       exit $rc; 
+fi
\ No newline at end of file