From d9fb2fbfa7f8c6b481bc8553f3035395f687664a Mon Sep 17 00:00:00 2001 From: hyu2010 Date: Mon, 21 Dec 2020 10:37:26 -0500 Subject: Fixes for bugs found in Transport Slicing integration This update contains for the fixes for the following JIRAs: SO-3429: Transport Slicing integration: fix resource operation status table mapping SO-3434: Transport Slicing integration: modelUuid and modelInvariantUuid are missing from service-instance Issue-ID: SO-3429 Issue-ID: SO-3434 Signed-off-by: hyu2010 Change-Id: I7a9b7b7a3e40d967c138067a01f2c045fb3e4b56 Signed-off-by: hyu2010 --- .../src/main/resources/subprocess/DoAllocateTransportNSSI.bpmn | 2 +- .../src/main/resources/subprocess/DoDeallocateTransportNSSI.bpmn | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'bpmn/so-bpmn-infrastructure-flows') diff --git a/bpmn/so-bpmn-infrastructure-flows/src/main/resources/subprocess/DoAllocateTransportNSSI.bpmn b/bpmn/so-bpmn-infrastructure-flows/src/main/resources/subprocess/DoAllocateTransportNSSI.bpmn index 4f83c872a1..f3bd700d9a 100644 --- a/bpmn/so-bpmn-infrastructure-flows/src/main/resources/subprocess/DoAllocateTransportNSSI.bpmn +++ b/bpmn/so-bpmn-infrastructure-flows/src/main/resources/subprocess/DoAllocateTransportNSSI.bpmn @@ -164,7 +164,7 @@ css.prepareOofSelection(execution) SequenceFlow_0n4xku8 SequenceFlow_0kixzdj import org.onap.so.bpmn.infrastructure.scripts.* -execution.setVariable("orchestrationStatus", "activated") +execution.setVariable("orchestrationStatus", "deactivated") def runScript = new TnAllocateNssi() runScript.updateAAIOrchStatus(execution) diff --git a/bpmn/so-bpmn-infrastructure-flows/src/main/resources/subprocess/DoDeallocateTransportNSSI.bpmn b/bpmn/so-bpmn-infrastructure-flows/src/main/resources/subprocess/DoDeallocateTransportNSSI.bpmn index bd759caffd..9dbc9909fc 100644 --- a/bpmn/so-bpmn-infrastructure-flows/src/main/resources/subprocess/DoDeallocateTransportNSSI.bpmn +++ b/bpmn/so-bpmn-infrastructure-flows/src/main/resources/subprocess/DoDeallocateTransportNSSI.bpmn @@ -29,7 +29,7 @@ ex.processJavaException(execution) SequenceFlow_1jygjln SequenceFlow_1qv8qw1 import org.onap.so.bpmn.infrastructure.scripts.* -def runScript = new TnAllocateNssi() +def runScript = new DoDeallocateTnNssi() runScript.prepareUpdateJobStatus(execution,"finished","100","Deallocated TN NSSI successfully") -- cgit 1.2.3-korg