Skip to content

Commit 2a76129

Browse files
committed
typos
1 parent ed188ba commit 2a76129

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/job.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ function run(instance, job_id, request_doc, asJson) {
6161
var result = { error : util.format('Starting job "%s" on %s failed',
6262
job_id, instance), fault : res.body.fault };
6363

64-
// handle case of res.body.fault.type === 'UnknownPropertyException'
64+
// handle case of import job with res.body.fault.type === 'UnknownPropertyException'
6565
// this must be a support user, so we need to re-run with normal job parameters form
6666
if (job_id === 'sfcc-site-archive-import' && request_doc.file_name
6767
&& res.body.fault && res.body.fault.type === 'UnknownPropertyException') {
@@ -179,7 +179,7 @@ function runSync(instance, job_id, request_doc, asJson, failFast) {
179179
var result = { error : util.format('Starting job "%s" on %s failed',
180180
job_id, instance), fault : res.body.fault };
181181

182-
// handle case of res.body.fault.type === 'UnknownPropertyException'
182+
// handle case of import job with res.body.fault.type === 'UnknownPropertyException'
183183
// this must be a support user, so we need to re-run with normal job parameters form
184184
if (job_id === 'sfcc-site-archive-import' && request_doc.file_name
185185
&& res.body.fault && res.body.fault.type === 'UnknownPropertyException') {

0 commit comments

Comments
 (0)