diff options
author | Jack Lucas <jflucas@research.att.com> | 2017-10-20 15:36:12 +0000 |
---|---|---|
committer | Jack Lucas <jflucas@research.att.com> | 2017-10-20 15:37:17 +0000 |
commit | e44dae66714b5ddb21cf2af17e83681c3bb1249d (patch) | |
tree | bebd639f1fbe9db9aec6f6baed2da2202259bf59 /lib/deploy.js | |
parent | 8ff6ed5596ac9d5591d1e9c16c50e632ae91ccc1 (diff) |
Fix logging errorsv1.1.01.0.0-ONAP1.0.0-Amsterdam
Change-Id: Ibb5182e7eff9a1c2d079da28a46d09cb2c700592
Issue-Id: DCAEGEN2-171
Signed-off-by: Jack Lucas <jflucas@research.att.com>
Diffstat (limited to 'lib/deploy.js')
-rw-r--r-- | lib/deploy.js | 6 |
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") { |