From c56e4b5b59ab03d93cc594acc5df0db571349d01 Mon Sep 17 00:00:00 2001 From: "Leigh, Phillip (pl876u)" Date: Tue, 6 Nov 2018 12:01:47 -0500 Subject: 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) --- src/main/docker/startService.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main') 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 -- cgit 1.2.3-korg