BugFix:CtxAggr doesn't pick up events-CtxAggr chg3 75/71975/2
authorLeigh, Phillip (pl876u) <phillip.leigh@amdocs.com>
Tue, 6 Nov 2018 17:01:47 +0000 (12:01 -0500)
committerLeigh, Phillip (pl876u) <phillip.leigh@amdocs.com>
Tue, 6 Nov 2018 18:46:06 +0000 (13:46 -0500)
The root cause is due to the DMaap topic wasn't created on a freshly
deployed system.

The solution is to create the topics needed by POMBA.

Issue-ID: LOG-794
Change-Id: I9ef5e2676e0b132002102f2f60e17f6a6bc125f0
Signed-off-by: Leigh, Phillip (pl876u) <phillip.leigh@amdocs.com>
src/main/docker/startService.sh

index a6b368a..6bb0414 100644 (file)
@@ -5,8 +5,8 @@ cd /opt/app
 preStartFile="/opt/app/bin/pre_start.sh"
 if [ -f "$preStartFile" ]
 then
-       echo "$preStartFile found."
-        exec $preStartFile
+       echo "Executing $preStartFile ... ..."
+       $preStartFile
 else
        echo "$preStartFile not found."
 fi