aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBancala, Ben (bb3476) <bb3476@att.com>2018-05-30 15:16:41 -0400
committerMarcus Williams <marcus.williams@intel.com>2018-05-30 21:24:06 +0000
commita3627bdf020a5d555318c20b2dd892f5941fdba6 (patch)
treeb06c624b4876663a3b8e499273ccee501ea0f8d9
parent7fadb0d88ddd643182a63439510ad8a586653c4a (diff)
Set CreateVfModuleInfra health check to false
Issue-ID: SO-659 Change-Id: I4f7d9ce861db6d997ebc1108cdf1bd0995a7aa19 Signed-off-by: Bancala, Ben (bb3476) <bb3476@att.com>
-rw-r--r--bpmn/MSOInfrastructureBPMN/src/main/groovy/org/openecomp/mso/bpmn/infrastructure/scripts/CreateVfModuleInfra.groovy2
1 files changed, 1 insertions, 1 deletions
diff --git a/bpmn/MSOInfrastructureBPMN/src/main/groovy/org/openecomp/mso/bpmn/infrastructure/scripts/CreateVfModuleInfra.groovy b/bpmn/MSOInfrastructureBPMN/src/main/groovy/org/openecomp/mso/bpmn/infrastructure/scripts/CreateVfModuleInfra.groovy
index 6637d3c667..5282c9cdb2 100644
--- a/bpmn/MSOInfrastructureBPMN/src/main/groovy/org/openecomp/mso/bpmn/infrastructure/scripts/CreateVfModuleInfra.groovy
+++ b/bpmn/MSOInfrastructureBPMN/src/main/groovy/org/openecomp/mso/bpmn/infrastructure/scripts/CreateVfModuleInfra.groovy
@@ -318,7 +318,7 @@ public class CreateVfModuleInfra extends AbstractServiceTaskProcessor {
if(vnf.isPresent()){
def vnfOrchestrationStatus = vnf.get().getOrchestrationStatus();
if("active".equalsIgnoreCase(vnfOrchestrationStatus)){
- execution.setVariable("runHealthCheck", true);
+ execution.setVariable("runHealthCheck", false);
execution.setVariable("runConfigScaleOut", true);
}
}