diff options
author | Ruchira Agarwal <ra1926@att.com> | 2018-05-30 21:39:35 +0000 |
---|---|---|
committer | Ruchira Agarwal <ra1926@att.com> | 2018-05-30 21:39:35 +0000 |
commit | e377e0205a7448af0c8c04dd349c018069d96ddf (patch) | |
tree | 82faf1fd4333414141c7601257af8fcb87abe8af | |
parent | 12e42ca015ef09b84925cc39a20320ee330bf267 (diff) |
LCMConsumer fix
Remove partition edit
Change-Id: Id4861a7c4bb46775b770d3511b7cf50f8c49637f
Issue-ID: CCSDK-292
Signed-off-by: Ruchira Agarwal <ra1926@att.com>
-rw-r--r-- | dmaap-listener/src/main/java/org/onap/ccsdk/sli/northbound/dmaapclient/SdncLcmDmaapConsumer.java | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/dmaap-listener/src/main/java/org/onap/ccsdk/sli/northbound/dmaapclient/SdncLcmDmaapConsumer.java b/dmaap-listener/src/main/java/org/onap/ccsdk/sli/northbound/dmaapclient/SdncLcmDmaapConsumer.java index eb29111dc..53fb6db0f 100644 --- a/dmaap-listener/src/main/java/org/onap/ccsdk/sli/northbound/dmaapclient/SdncLcmDmaapConsumer.java +++ b/dmaap-listener/src/main/java/org/onap/ccsdk/sli/northbound/dmaapclient/SdncLcmDmaapConsumer.java @@ -50,16 +50,6 @@ public class SdncLcmDmaapConsumer extends SdncDmaapConsumer { } catch (Exception e) { throw new InvalidMessageException("Cannot parse LCM json input", e); } - - JsonNode partitionNode = lcmRootNode.get(PARTITION); - if (partitionNode != null) - { - String partition = partitionNode.textValue(); - if(PARTITION_VALUE.equals(partition) == false) { - LOG.warn("Unknown Partition in LCM message- " + partition); - return; - } - } JsonNode bodyNode = lcmRootNode.get(BODY); if(bodyNode == null) { |