updated code with parallel streams to normal 76/107276/1
authorKalkere Ramesh, Sharan <sharan.kalkere.ramesh@att.com>
Wed, 6 May 2020 21:51:53 +0000 (17:51 -0400)
committerBenjamin, Max (mb388a) <mb388a@att.com>
Wed, 6 May 2020 21:51:53 +0000 (17:51 -0400)
updated code with parallel streams to normal streams

Issue-ID: SO-2904
Signed-off-by: Benjamin, Max (mb388a) <mb388a@att.com>
Change-Id: Ifb9c3644b1129f593acde31b57b0bb3ec24074d2

adapters/mso-catalog-db-adapter/src/main/java/org/onap/so/adapters/catalogdb/rest/ServiceMapper.java
adapters/mso-openstack-adapters/src/main/java/org/onap/so/adapters/tasks/audit/HeatStackAudit.java

index e74663d..09c790c 100644 (file)
@@ -68,7 +68,7 @@ public class ServiceMapper {
     private List<Vnf> mapVnfs(org.onap.so.db.catalog.beans.Service service, int depth) {
         List<Vnf> vnfs = new ArrayList<>();
         logger.info("Vnf Count : {}", service.getVnfCustomizations().size());
-        service.getVnfCustomizations().parallelStream().forEach(vnf -> vnfs.add(mapVnf(vnf, depth)));
+        service.getVnfCustomizations().stream().forEach(vnf -> vnfs.add(mapVnf(vnf, depth)));
         return vnfs;
     }
 
@@ -104,7 +104,7 @@ public class ServiceMapper {
 
     private List<VfModule> mapVfModules(VnfResourceCustomization vnfResourceCustomization, int depth) {
         List<VfModule> vfModules = new ArrayList<>();
-        vnfResourceCustomization.getVfModuleCustomizations().parallelStream()
+        vnfResourceCustomization.getVfModuleCustomizations().stream()
                 .forEach(vfModule -> vfModules.add(mapVfModule(vfModule, depth)));
         return vfModules;
     }
@@ -133,8 +133,7 @@ public class ServiceMapper {
 
     private List<Cvnfc> mapCvnfcs(VfModuleCustomization vfModuleCustomization) {
         List<Cvnfc> cvnfcs = new ArrayList<>();
-        vfModuleCustomization.getCvnfcCustomization().parallelStream()
-                .forEach(cvnfcCust -> cvnfcs.add(mapCvnfcCus(cvnfcCust)));
+        vfModuleCustomization.getCvnfcCustomization().stream().forEach(cvnfcCust -> cvnfcs.add(mapCvnfcCus(cvnfcCust)));
         return cvnfcs;
     }
 
index ed45346..3ff15ff 100644 (file)
@@ -288,7 +288,7 @@ public class HeatStackAudit {
      */
     protected List<Optional<Port>> retrieveNeutronPortDetails(Resources resources, String cloudSiteId,
             String tenantId) {
-        return resources.getList().parallelStream().filter(resource -> "OS::Neutron::Port".equals(resource.getType()))
+        return resources.getList().stream().filter(resource -> "OS::Neutron::Port".equals(resource.getType()))
                 .map(resource -> neutron.getNeutronPort(resource.getPhysicalResourceId(), tenantId, cloudSiteId))
                 .collect(Collectors.toList());