From bb34137b85575dd36121d8cfc63b469e9a2ebf08 Mon Sep 17 00:00:00 2001 From: Rob Daugherty Date: Tue, 24 Apr 2018 13:53:25 -0400 Subject: Create VF Module Error There are multiple issues here. 1) The LCM healthcheck and config-scale-out should be made conditional upon the VNF orchestration status being Active or Activated. I'm not going to do that with this commit, since the logic will probably need to be moved to the DoCreateVfModule flow. What I will do is bypass the LCM operations to unblock testing. Another ticket will need to address the real solution. 2) APP-C gave us an API where the controller type is configured in their client object, which is NOT what we wanted. As a result, we have to keep a client object for each controller type. Our implementation did not do this. 3) Need to support the APP-C client configuration properties for specifying the SDN-C topic names. I'm refactoring the APP-C client urn mapping names to make it clear that they are for configuring the APP-C *client* and not necessarily for APP-C itself. Change-Id: I588f3b98b4ee44ba53b4931f9f1a7938ee70bebf Issue-ID: SO-577 Signed-off-by: Rob Daugherty --- .../src/test/resources/mso.bpmn.urn.properties | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'bpmn/MSOInfrastructureBPMN/src/test/resources') diff --git a/bpmn/MSOInfrastructureBPMN/src/test/resources/mso.bpmn.urn.properties b/bpmn/MSOInfrastructureBPMN/src/test/resources/mso.bpmn.urn.properties index c8ec2dfbb0..fc84d9ea85 100644 --- a/bpmn/MSOInfrastructureBPMN/src/test/resources/mso.bpmn.urn.properties +++ b/bpmn/MSOInfrastructureBPMN/src/test/resources/mso.bpmn.urn.properties @@ -114,14 +114,16 @@ policy.environment=TEST policy.endpoint=http://localhost:28090/pdp/api/ policy.default.disposition=Skip -appc.topic.read=APPC-CL-FUSION-LCM-RESPONSE -appc.topic.read.timeout=100 +appc.client.topic.read=APPC-CL-FUSION-LCM-RESPONSE +appc.client.topic.write=APPC-CL-FUSION-LCM +appc.client.topic.sdnc.read=SDNC-LCM-READ +appc.client.topic.sdnc.write=SDNC-LCM-WRITE +appc.client.topic.read.timeout=100 appc.client.response.timeout=300 -appc.topic.write=APPC-CL-FUSION-LCM -appc.poolMembers=localhost:28090 +appc.client.poolMembers=localhost:28090 appc.client.key=iaEMAfjsVsZnraBP appc.client.secret=wcivUjsjXzmGFBfxMmyJu9dz -#appc.service=ueb +#appc.client.service=ueb sdnc.si.sv.types=PORT-MIRROR,PPROBES mso.bpmn.optimisticlockingexception.retrycount=3 -- cgit 1.2.3-korg