diff options
author | Leigh, Phillip (pl876u) <phillip.leigh@amdocs.com> | 2018-11-06 12:01:47 -0500 |
---|---|---|
committer | Leigh, Phillip (pl876u) <phillip.leigh@amdocs.com> | 2018-11-06 13:46:06 -0500 |
commit | c56e4b5b59ab03d93cc594acc5df0db571349d01 (patch) | |
tree | 9e0e39ee51762c2335ee8f0cd9dfe7cd555ba7f1 /src/main/docker | |
parent | fb18254634aebf89b0a282cca3b5a9b6445aa62a (diff) |
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) <phillip.leigh@amdocs.com>
Diffstat (limited to 'src/main/docker')
-rw-r--r-- | src/main/docker/startService.sh | 4 |
1 files changed, 2 insertions, 2 deletions
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 |