PY-executor missing AUTH_TOKEN in startup script 11/108211/3
authorOleg Mitsura <oleg.mitsura@amdocs.com>
Mon, 25 May 2020 20:22:04 +0000 (16:22 -0400)
committerKAPIL SINGAL <ks220y@att.com>
Wed, 27 May 2020 19:06:25 +0000 (19:06 +0000)
rev1. initially copied BASIC_AUTH
rev2. meant AUTH_TOKEN

Issue-ID: CCSDK-2386

Signed-off-by: Oleg Mitsura <oleg.mitsura@amdocs.com>
Change-Id: I6278476291d4ef892b249e35f20f43d70fd0e4a0

ms/py-executor/docker/start.sh

index 6868ba0..2fe1267 100755 (executable)
@@ -28,6 +28,12 @@ then
   export ARTIFACT_MANAGER_PORT=50053
 fi
 
+if [ -z "${AUTH_TOKEN}" ]
+then
+  echo "AUTH_TOKEN environment variable is not set, using default."
+  export AUTH_TOKEN="Basic Y2NzZGthcHBzOmNjc2RrYXBwcw=="
+fi
+
 if [ -z "${LOG_FILE}" ]
 then
   echo "LOG_FILE environment variable is not set, using default."
@@ -58,4 +64,4 @@ fi
 
 
 cd /opt/app/onap/python/
-python server.py
\ No newline at end of file
+python server.py