Fix broken build 91/96891/1
authorTimoney, Dan (dt5972) <dtimoney@att.com>
Thu, 10 Oct 2019 18:05:46 +0000 (14:05 -0400)
committerTimoney, Dan (dt5972) <dtimoney@att.com>
Thu, 10 Oct 2019 18:05:46 +0000 (14:05 -0400)
MetricLogger no longer has its own static definitions for MDC fields -
instead, these are in logging analytics class

Change-Id: I3074cf6879120b1e03a5b14e6f38b13eef82ad77
Issue-ID: CCSDK-1824
Signed-off-by: Timoney, Dan (dt5972) <dtimoney@att.com>
aai-service/provider/pom.xml
aai-service/provider/src/main/java/org/onap/ccsdk/sli/adaptors/aai/AAIClientRESTExecutor.java
aai-service/provider/src/main/java/org/onap/ccsdk/sli/adaptors/aai/AAIService.java

index 142e381..5055c64 100755 (executable)
             <artifactId>utils-provider</artifactId>
             <version>${ccsdk.sli.core.version}</version>
         </dependency>
+        <dependency>
+            <groupId>org.onap.logging-analytics</groupId>
+            <artifactId>logging-filter-base</artifactId>
+            <version>1.5.0</version>
+        </dependency>
         <dependency>
             <groupId>org.osgi</groupId>
             <artifactId>org.osgi.core</artifactId>
index c4f9464..446ec4b 100755 (executable)
@@ -58,6 +58,7 @@ import org.onap.ccsdk.sli.adaptors.aai.data.RequestError;
 import org.onap.ccsdk.sli.adaptors.aai.data.ResourceVersion;
 import org.onap.ccsdk.sli.adaptors.aai.data.ServiceException;
 import org.onap.ccsdk.sli.core.sli.MetricLogger;
+import org.onap.logging.ref.slf4j.ONAPLogConstants;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
@@ -714,7 +715,7 @@ public class AAIClientRESTExecutor implements AAIExecutorInterface {
         String mlId = ml.getRequestID();
         if (mlId != null && !mlId.isEmpty()) {
             LOG.debug(String.format("MetricLogger requestId = %s", mlId));
-            con.setRequestProperty(MetricLogger.REQUEST_ID, mlId);
+            con.setRequestProperty(ONAPLogConstants.MDCs.REQUEST_ID, mlId);
         } else {
             LOG.debug("MetricLogger requestId is null");
         }
index a683a93..c0dc569 100755 (executable)
@@ -86,6 +86,7 @@ import org.onap.aai.inventory.v16.PhysicalLink;
 import org.onap.aai.inventory.v16.ResultData;
 import org.onap.aai.inventory.v16.SearchResults;
 import org.onap.aai.inventory.v16.Vserver;
+import org.onap.logging.ref.slf4j.ONAPLogConstants;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 import org.slf4j.MDC;
@@ -363,7 +364,7 @@ public class AAIService extends AAIDeclarations implements AAIClient, SvcLogicRe
         String mlId = ml.getRequestID();
         if(mlId != null && !mlId.isEmpty()) {
             LOG.debug(String.format("MetricLogger requestId = %s", mlId));
-            con.setRequestProperty(MetricLogger.REQUEST_ID, mlId);
+            con.setRequestProperty(ONAPLogConstants.MDCs.REQUEST_ID, mlId);
         } else {
             LOG.debug("MetricLogger requestId is null");
         }