From 4852d3577447aa8790b63442b6d5c48412e2eb21 Mon Sep 17 00:00:00 2001 From: Sandeep Shah Date: Mon, 19 Aug 2019 21:40:44 -0500 Subject: 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 Change-Id: Ie634ff60cf439be5f5136275f2ea19abf40949de --- .../onap/ccsdk/sli/northbound/dmaapclient/OofPciPocDmaapConsumers.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 9d78e8ac..e8dacb95 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/"; -- cgit 1.2.3-korg