Merge "[fix][core] remove var definitions from finally block"
diff --git a/src/com/mirantis/mk/KaasUtils.groovy b/src/com/mirantis/mk/KaasUtils.groovy
index 7291c88..2109dcd 100644
--- a/src/com/mirantis/mk/KaasUtils.groovy
+++ b/src/com/mirantis/mk/KaasUtils.groovy
@@ -230,7 +230,7 @@
currentBuild.description += build_description
}
} finally {
- common.infoMsg("Patched KaaS demo with Openstack provider finished with status: ${build_result}")
+ common.infoMsg('Patched KaaS demo with Openstack provider finished')
}
}
if (triggers.awsOnDemandDemoEnabled) {
@@ -246,7 +246,7 @@
currentBuild.description += build_description
}
} finally {
- common.infoMsg("Patched KaaS demo with AWS provider finished with status: ${build_result}")
+ common.infoMsg('Patched KaaS demo with AWS provider finished')
}
}
}