aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNiranjana <niranjana.y60@wipro.com>2020-05-18 18:51:34 +0530
committerNiranjana Y <niranjana.y60@wipro.com>2020-07-09 07:22:55 +0000
commit2d055a7021253f44100ed8352ade75e8099c0c7e (patch)
tree1d133828a92e6a41bb70598d34e215c2c374e822
parent7741546bd7607aad3ad78f01006b5c95a4c0464d (diff)
Fix networkId issue while making call to oof
Issue-ID: DCAEGEN2-2249 Signed-off-by: Niranjana <niranjana.y60@wipro.com> Change-Id: Ia34b19f18c04d073c45be4a93a5408dc6dd76126 (cherry picked from commit 733bd98973d4e42f310c0ca0b44848474db94a83)
-rw-r--r--pom.xml2
-rw-r--r--src/main/java/org/onap/dcaegen2/services/sonhms/MainThreadComponent.java2
-rw-r--r--src/main/java/org/onap/dcaegen2/services/sonhms/child/ChildThread.java13
-rw-r--r--src/main/java/org/onap/dcaegen2/services/sonhms/restclient/SdnrRestClient.java17
-rw-r--r--version.properties2
5 files changed, 30 insertions, 6 deletions
diff --git a/pom.xml b/pom.xml
index 03694cf..9ec00c6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -27,7 +27,7 @@
<groupId>org.onap.dcaegen2.services.son-handler</groupId>
<artifactId>son-handler</artifactId>
<name>dcaegen2-services-son-handler</name>
- <version>2.0.2-SNAPSHOT</version>
+ <version>2.0.3-SNAPSHOT</version>
<!--parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.4.RELEASE</version> </parent -->
diff --git a/src/main/java/org/onap/dcaegen2/services/sonhms/MainThreadComponent.java b/src/main/java/org/onap/dcaegen2/services/sonhms/MainThreadComponent.java
index e809b45..608e95b 100644
--- a/src/main/java/org/onap/dcaegen2/services/sonhms/MainThreadComponent.java
+++ b/src/main/java/org/onap/dcaegen2/services/sonhms/MainThreadComponent.java
@@ -82,7 +82,7 @@ public class MainThreadComponent {
Long difference = fixedPciCreatedAt.getTime() - lastInvokedOofTimeStamp.getTime();
Configuration configuration = Configuration.getInstance();
- if (difference > configuration.getPolicyFixedPciTimeInterval()) {
+ if (Math.abs(difference) > configuration.getPolicyFixedPciTimeInterval()) {
log.info("Creating new child thread for sending fixedPciCells");
List<Graph> cluster = new ArrayList<>();
BlockingQueue<List<String>> childStatusQueue = new LinkedBlockingQueue<>();
diff --git a/src/main/java/org/onap/dcaegen2/services/sonhms/child/ChildThread.java b/src/main/java/org/onap/dcaegen2/services/sonhms/child/ChildThread.java
index 1e740a9..fd2de30 100644
--- a/src/main/java/org/onap/dcaegen2/services/sonhms/child/ChildThread.java
+++ b/src/main/java/org/onap/dcaegen2/services/sonhms/child/ChildThread.java
@@ -25,6 +25,7 @@ import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.ObjectMapper;
import fj.data.Either;
+import org.json.JSONObject;
import java.io.IOException;
import java.sql.Timestamp;
@@ -80,6 +81,7 @@ public class ChildThread implements Runnable {
HoMetricsComponent hoMetricsComponent;
private static final Logger log = org.slf4j.LoggerFactory.getLogger(ChildThread.class);
private static Timestamp startTime;
+ private static String networkId;
/**
@@ -169,7 +171,14 @@ public class ChildThread implements Runnable {
new PolicyDmaapClient(new DmaapUtils(), Configuration.getInstance()), new HoMetricsComponent());
try {
- String networkId = cluster.getNetworkId();
+ networkId = cluster.getNetworkId();
+ if (cluster.getCellPciNeighbourMap().isEmpty()) {
+ FixedPciCellsRepository fixedPciCellsRepository = BeanUtil.getBean(FixedPciCellsRepository.class);
+ List<String> fixedPciCells = fixedPciCellsRepository.getFixedPciCells();
+ String cellId = fixedPciCells.get(0);
+ JSONObject cellData = SdnrRestClient.getCellData(cellId);
+ networkId = cellData.getJSONObject("Cell").getString("networkId");
+ }
Boolean done = false;
@@ -526,4 +535,4 @@ public class ChildThread implements Runnable {
}
return Either.right(404);
}
-} \ No newline at end of file
+}
diff --git a/src/main/java/org/onap/dcaegen2/services/sonhms/restclient/SdnrRestClient.java b/src/main/java/org/onap/dcaegen2/services/sonhms/restclient/SdnrRestClient.java
index 2478f82..a390bbe 100644
--- a/src/main/java/org/onap/dcaegen2/services/sonhms/restclient/SdnrRestClient.java
+++ b/src/main/java/org/onap/dcaegen2/services/sonhms/restclient/SdnrRestClient.java
@@ -2,7 +2,7 @@
* ============LICENSE_START=======================================================
* son-handler
* ================================================================================
- * Copyright (C) 2019 Wipro Limited.
+ * Copyright (C) 2019-2020 Wipro Limited.
* ==============================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -106,6 +106,21 @@ public class SdnrRestClient {
}
/**
+ * Method to get CellData name from SDNR.
+ *
+ * @throws ConfigDbNotFoundException
+ * when request to configDB fails
+ */
+ public static JSONObject getCellData(String cellId) throws ConfigDbNotFoundException {
+ Configuration configuration = Configuration.getInstance();
+ String requestUrl = configuration.getConfigDbService() + "/api/sdnc-config-db/v3/getCell" + "/" + cellId;
+ String response = sendRequest(requestUrl);
+ JSONObject responseObject = new JSONObject(response);
+ return responseObject;
+ }
+
+
+ /**
* Method to send request.
*/
private static String sendRequest(String url) throws ConfigDbNotFoundException {
diff --git a/version.properties b/version.properties
index f6b204e..49429b8 100644
--- a/version.properties
+++ b/version.properties
@@ -20,7 +20,7 @@
###############################################################################
major=2
minor=0
-patch=2
+patch=3
base_version=${major}.${minor}.${patch}
release_version=${base_version}
snapshot_version=${base_version}-SNAPSHOT