diff options
author | Bonkur, Venkat (vb8416) <vb8416@att.com> | 2019-06-04 22:46:14 -0400 |
---|---|---|
committer | Bonkur, Venkat (vb8416) <vb8416@att.com> | 2019-06-04 22:47:47 -0400 |
commit | ce75c2660be79e0ec72669b4dd5e62172d89c028 (patch) | |
tree | 10d5c0d5384417f4a94289936d56dc78edc18a99 | |
parent | 1509e37517bfb61e2b98190528290987983db293 (diff) |
Add SO exclude ConfigurationScaleOutBB
Updated the WorkflowAction.isConfiguration() to exclude ConfigurationScaleOutBB
problem- VF module check failure during scale out
Issue-ID: SO-1982
Signed-off-by: Bonkur, Venkat (vb8416) <vb8416@att.com>
Change-Id: I5caa6f1c5ff21131ea1c42a63b441a39f77a6e62
-rw-r--r-- | bpmn/so-bpmn-tasks/src/main/java/org/onap/so/bpmn/infrastructure/workflow/tasks/WorkflowAction.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bpmn/so-bpmn-tasks/src/main/java/org/onap/so/bpmn/infrastructure/workflow/tasks/WorkflowAction.java b/bpmn/so-bpmn-tasks/src/main/java/org/onap/so/bpmn/infrastructure/workflow/tasks/WorkflowAction.java index 2fc301f9d7..70726f2014 100644 --- a/bpmn/so-bpmn-tasks/src/main/java/org/onap/so/bpmn/infrastructure/workflow/tasks/WorkflowAction.java +++ b/bpmn/so-bpmn-tasks/src/main/java/org/onap/so/bpmn/infrastructure/workflow/tasks/WorkflowAction.java @@ -415,7 +415,7 @@ public class WorkflowAction { protected boolean isConfiguration(List<OrchestrationFlow> orchFlows) { for (OrchestrationFlow flow : orchFlows) { - if (flow.getFlowName().contains("Configuration")) { + if (flow.getFlowName().contains("Configuration") && !flow.getFlowName().equals("ConfigurationScaleOutBB")) { return true; } } |