From: Leigh, Phillip (pl876u) Date: Tue, 6 Nov 2018 17:01:47 +0000 (-0500) Subject: BugFix:CtxAggr doesn't pick up events-CtxAggr chg3 X-Git-Tag: 1.3.3~1 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=c56e4b5b59ab03d93cc594acc5df0db571349d01;p=logging-analytics%2Fpomba%2Fpomba-context-aggregator.git BugFix:CtxAggr doesn't pick up events-CtxAggr chg3 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) --- diff --git a/src/main/docker/startService.sh b/src/main/docker/startService.sh index a6b368a..6bb0414 100644 --- a/src/main/docker/startService.sh +++ b/src/main/docker/startService.sh @@ -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