Change LCM property for SDNC topic 45/48745/1
authorArthur Martella <am153x@att.com>
Wed, 23 May 2018 17:11:45 +0000 (13:11 -0400)
committerArthur Martella <am153x@att.com>
Wed, 23 May 2018 17:13:45 +0000 (13:13 -0400)
Followup to https://gerrit.onap.org/r/#/c/48571/

Adding property sdnc-topic.read and
sdnc-topic.write to match topic.sdnc.read and
topic.sdnc.write on advice of SDNC LCM dev.

Change-Id: I3c856f126ecb2f6b1c45df818ea7d294e0440e5c
Issue-ID: INT-475
Signed-off-by: Arthur Martella <am153x@att.com>
bpmn/MSOCommonBPMN/src/main/java/org/openecomp/mso/client/appc/ApplicationControllerClient.java

index 3515aa9..c9b2962 100644 (file)
@@ -146,6 +146,8 @@ public class ApplicationControllerClient {
                properties.put("topic.write", globalProperties.get("appc.client.topic.write"));
                properties.put("topic.sdnc.read", globalProperties.get("appc.client.topic.sdnc.read"));
                properties.put("topic.sdnc.write", globalProperties.get("appc.client.topic.sdnc.write"));
+               properties.put("sdnc-topic.read", globalProperties.get("appc.client.topic.sdnc.read"));
+               properties.put("sdnc-topic.write", globalProperties.get("appc.client.topic.sdnc.write"));
                properties.put("topic.read.timeout", globalProperties.get("appc.client.topic.read.timeout"));
                properties.put("client.response.timeout", globalProperties.get("appc.client.response.timeout"));
                properties.put("poolMembers", globalProperties.get("appc.client.poolMembers"));