aboutsummaryrefslogtreecommitdiffstats
path: root/bpmn/MSOInfrastructureBPMN
diff options
context:
space:
mode:
authorsubhash kumar singh <subhash.kumar.singh@huawei.com>2018-04-13 04:57:50 +0000
committersubhash kumar singh <subhash.kumar.singh@huawei.com>2018-04-13 04:57:50 +0000
commitd102a4439f7a1f461a3a488f35f67c2a943f7c92 (patch)
tree2d9dd05dc06c210c3ae98aa4c109955539e4da65 /bpmn/MSOInfrastructureBPMN
parent504a6bc9a9104cc4c2fa5cb2f2496c0d97f43f50 (diff)
Fix property name for resource sequence
Fix property name for resource sequence Change-Id: I722a78b5f976885b25b9f42b96d1d02945ca8685 Issue-ID: SO-422 Signed-off-by: subhash kumar singh <subhash.kumar.singh@huawei.com>
Diffstat (limited to 'bpmn/MSOInfrastructureBPMN')
-rw-r--r--bpmn/MSOInfrastructureBPMN/src/main/java/org/openecomp/mso/bpmn/infrastructure/properties/BPMNProperties.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bpmn/MSOInfrastructureBPMN/src/main/java/org/openecomp/mso/bpmn/infrastructure/properties/BPMNProperties.java b/bpmn/MSOInfrastructureBPMN/src/main/java/org/openecomp/mso/bpmn/infrastructure/properties/BPMNProperties.java
index fbc2bd3b0a..acf8f052cd 100644
--- a/bpmn/MSOInfrastructureBPMN/src/main/java/org/openecomp/mso/bpmn/infrastructure/properties/BPMNProperties.java
+++ b/bpmn/MSOInfrastructureBPMN/src/main/java/org/openecomp/mso/bpmn/infrastructure/properties/BPMNProperties.java
@@ -48,7 +48,7 @@ public class BPMNProperties {
}
public static List<String> getResourceSequenceProp() {
- String resourceSequence = getProperty("mso.workflow.default.resource.sequence", null);
+ String resourceSequence = getProperty("mso.workflow.custom.VolTE.resource.sequence", null);
if (resourceSequence != null) {
return Arrays.asList(resourceSequence.split(","));
}