From: subhash kumar singh Date: Fri, 13 Apr 2018 04:57:50 +0000 (+0000) Subject: Fix property name for resource sequence X-Git-Tag: v1.2.1~144^2~15 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=d102a4439f7a1f461a3a488f35f67c2a943f7c92;p=so.git 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 --- 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 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(",")); }