diff options
author | Seshu Kumar M <seshu.kumar.m@huawei.com> | 2018-11-19 03:48:18 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-11-19 03:48:18 +0000 |
commit | f60a6f9b612472c7ec1118626a501c1e54b03be9 (patch) | |
tree | 464354c6e2c7011f0b577ce71d21d67c848169dd /bpmn/so-bpmn-infrastructure-common | |
parent | 6d0b27c761889fdc3d10d97b9867461ca1203d09 (diff) | |
parent | e6dc384b0e77f116c0afd77af55bd6c9dfdbf814 (diff) |
Merge "Fix the service id modified" into casablanca
Diffstat (limited to 'bpmn/so-bpmn-infrastructure-common')
-rw-r--r-- | bpmn/so-bpmn-infrastructure-common/src/main/groovy/org/onap/so/bpmn/infrastructure/scripts/DoCreateE2EServiceInstance.groovy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bpmn/so-bpmn-infrastructure-common/src/main/groovy/org/onap/so/bpmn/infrastructure/scripts/DoCreateE2EServiceInstance.groovy b/bpmn/so-bpmn-infrastructure-common/src/main/groovy/org/onap/so/bpmn/infrastructure/scripts/DoCreateE2EServiceInstance.groovy index 40049515db..c987b062ae 100644 --- a/bpmn/so-bpmn-infrastructure-common/src/main/groovy/org/onap/so/bpmn/infrastructure/scripts/DoCreateE2EServiceInstance.groovy +++ b/bpmn/so-bpmn-infrastructure-common/src/main/groovy/org/onap/so/bpmn/infrastructure/scripts/DoCreateE2EServiceInstance.groovy @@ -264,7 +264,7 @@ public class DoCreateE2EServiceInstance extends AbstractServiceTaskProcessor { public void createServiceInstance(DelegateExecution execution) { msoLogger.trace("createServiceInstance ") String msg = "" - String serviceInstanceId = UUID.randomUUID().toString() + String serviceInstanceId = execution.getVariable("serviceInstanceId") try { org.onap.aai.domain.yang.ServiceInstance si = execution.getVariable("serviceInstanceData") |