Upgrading akka cluster dependency 86/121786/3
authorSingal, Kapil (ks220y) <ks220y@att.com>
Thu, 10 Jun 2021 03:22:53 +0000 (23:22 -0400)
committerSingal, Kapil (ks220y) <ks220y@att.com>
Thu, 10 Jun 2021 16:15:41 +0000 (12:15 -0400)
Issue-ID: CCSDK-3333
Signed-off-by: Singal, Kapil (ks220y) <ks220y@att.com>
Change-Id: Ia5da682990acbf99a2026393f8dea511ccca4420

northbound/daexim-offsite-backup/provider/src/test/java/org/onap/ccsdk/sli/northbound/daeximoffsitebackup/DaeximOffsiteBackupProviderTest.java
northbound/dmaap-listener/src/main/java/org/onap/ccsdk/sli/northbound/dmaapclient/SdncDmaapConsumerImpl.java
plugins/grToolkit/provider/pom.xml

index 03fe375..528ce50 100644 (file)
@@ -33,8 +33,10 @@ import java.lang.reflect.InvocationTargetException;
 import java.lang.reflect.Method;
 import java.util.Arrays;
 import java.util.List;
+import java.util.Map;
 import java.util.Properties;
 import java.util.concurrent.ExecutionException;
+import org.eclipse.jdt.annotation.NonNull;
 import org.eclipse.jdt.annotation.Nullable;
 import org.junit.Before;
 import org.junit.Test;
@@ -148,8 +150,13 @@ public class DaeximOffsiteBackupProviderTest {
                 return "Some Timestamp";
             }
 
+            @Override
+            public @NonNull Map<Class<? extends Augmentation<RetrieveDataInput>>, Augmentation<RetrieveDataInput>> augmentations() {
+                return null;
+            }
 
         };
+
         try {
             assertNotNull(provider.retrieveData(input));
         }
index ee8bb4d..6092512 100644 (file)
@@ -27,9 +27,9 @@ import java.io.FileInputStream;
 import java.util.Properties;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
-import com.att.nsa.mr.client.MRClientFactory;
-import com.att.nsa.mr.client.MRConsumer;
-import com.att.nsa.mr.client.response.MRConsumerResponse;
+import org.onap.dmaap.mr.client.MRClientFactory;
+import org.onap.dmaap.mr.client.MRConsumer;
+import org.onap.dmaap.mr.client.response.MRConsumerResponse;
 
 public abstract class SdncDmaapConsumerImpl implements SdncDmaapConsumer {
 
index 19f8903..e0435cc 100755 (executable)
@@ -94,7 +94,7 @@
         </dependency>
         <dependency>
             <groupId>com.typesafe.akka</groupId>
-            <artifactId>akka-cluster_2.12</artifactId>
+            <artifactId>akka-cluster_2.13</artifactId>
             <scope>provided</scope>
         </dependency>
         <dependency>