diff options
author | Sandeep Shah <sandeeplinux1068@gmail.com> | 2019-08-19 21:40:44 -0500 |
---|---|---|
committer | Sandeep Shah <sandeeplinux1068@gmail.com> | 2019-08-19 21:40:44 -0500 |
commit | 4852d3577447aa8790b63442b6d5c48412e2eb21 (patch) | |
tree | 96a702cfea4fd2f663cb3c2afb4b0ffdf7ef7a5f | |
parent | 944a56af64c77e67a2a11a3d963efb18f0c26ab8 (diff) |
Bug fix to address DMAAPLISTENERROOT
Modified rootDir to /opt/onap/sdnc/...where map and vt
template files are transferred in the docker
Issue-ID: CCSDK-1400
Signed-off-by: SandeepLinux <Sandeep.Shah@ibm.com>
Change-Id: Ie634ff60cf439be5f5136275f2ea19abf40949de
-rw-r--r-- | dmaap-listener/src/main/java/org/onap/ccsdk/sli/northbound/dmaapclient/OofPciPocDmaapConsumers.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dmaap-listener/src/main/java/org/onap/ccsdk/sli/northbound/dmaapclient/OofPciPocDmaapConsumers.java b/dmaap-listener/src/main/java/org/onap/ccsdk/sli/northbound/dmaapclient/OofPciPocDmaapConsumers.java index 9d78e8acf..e8dacb959 100644 --- a/dmaap-listener/src/main/java/org/onap/ccsdk/sli/northbound/dmaapclient/OofPciPocDmaapConsumers.java +++ b/dmaap-listener/src/main/java/org/onap/ccsdk/sli/northbound/dmaapclient/OofPciPocDmaapConsumers.java @@ -83,7 +83,7 @@ public class OofPciPocDmaapConsumers extends SdncDmaapConsumerImpl { rootDir = System.getenv(DMAAPLISTENERROOT); if ((rootDir == null) || (rootDir.length() == 0)) { - rootDir = "/opt/app/dmaap-listener/lib/"; + rootDir = "/opt/onap/sdnc/dmaap-listener/lib/"; } else { rootDir = rootDir + "/lib/"; |