diff options
author | Seshu Kumar M <seshu.kumar.m@huawei.com> | 2018-04-13 07:16:27 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-04-13 07:16:27 +0000 |
commit | 26f51d87809a5360cc42fec595e474c2b4dbcd30 (patch) | |
tree | 229e11d83bd3329084357a4c7597ed793373f0d8 | |
parent | 11d8e0833720ed251da06068f0810bf26e381d2a (diff) | |
parent | d102a4439f7a1f461a3a488f35f67c2a943f7c92 (diff) |
Merge "Fix property name for resource sequence"
-rw-r--r-- | bpmn/MSOInfrastructureBPMN/src/main/java/org/openecomp/mso/bpmn/infrastructure/properties/BPMNProperties.java | 2 |
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(",")); } |