From f10b63e997810841048631be12d878c053e41dd4 Mon Sep 17 00:00:00 2001 From: Brian Broll Date: Sat, 12 Jan 2019 13:40:05 -0800 Subject: [PATCH] add failed job name to err msg. Fixes #1193 (#1194) --- src/plugins/ExecuteJob/ExecuteJob.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/plugins/ExecuteJob/ExecuteJob.js b/src/plugins/ExecuteJob/ExecuteJob.js index bd13e4c16..5ae6186fa 100644 --- a/src/plugins/ExecuteJob/ExecuteJob.js +++ b/src/plugins/ExecuteJob/ExecuteJob.js @@ -382,9 +382,10 @@ define([ // Handle the blob retrieval failed error ExecuteJob.prototype.onBlobRetrievalFail = function (node, input) { - var job = this.core.getParent(node), - e = `Failed to retrieve "${input}" (BLOB_FETCH_FAILED)`, - consoleErr = `Failed to execute operation: ${e}`; + const job = this.core.getParent(node); + const name = this.getAttribute(job, 'name'); + const e = `Failed to retrieve "${input}" (BLOB_FETCH_FAILED)`; + let consoleErr = `Failed to execute operation: ${e}`; consoleErr += [ '\n\nA couple things to check out:\n',