aboutsummaryrefslogtreecommitdiffstats
path: root/lib/deploy.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/deploy.js')
-rw-r--r--lib/deploy.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/deploy.js b/lib/deploy.js
index 741affb..7f83620 100644
--- a/lib/deploy.js
+++ b/lib/deploy.js
@@ -160,7 +160,7 @@ const launchBlueprint = function(id, blueprint, inputs) {
.catch(function(error) {
logger.debug(null, "Error: " + error + " for launch blueprint for deploymentId " + id);
throw normalizeError(error);
- })
+ });
};
exports.launchBlueprint = launchBlueprint;
@@ -191,7 +191,7 @@ const finishInstallation = function(deploymentId, executionId) {
logger.debug(null, "Error finishing install workflow: " + err + " -- " + JSON.stringify(err));
throw normalizeError(err);
});
-}
+};
exports.finishInstallation = finishInstallation;
// Initiate uninstall workflow against a deployment, but don't wait for workflow to finish
@@ -239,7 +239,7 @@ exports.getExecutionStatus = function (exid) {
var result = {
operationType: res.json.workflow_id
- }
+ };
// Map execution status
if (res.json.status === "terminated") {