From d102a4439f7a1f461a3a488f35f67c2a943f7c92 Mon Sep 17 00:00:00 2001 From: subhash kumar singh Date: Fri, 13 Apr 2018 04:57:50 +0000 Subject: 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 --- .../openecomp/mso/bpmn/infrastructure/properties/BPMNProperties.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bpmn/MSOInfrastructureBPMN/src/main') 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(",")); } -- cgit 1.2.3-korg