Skip to content

Commit

Permalink
fixed undefined variable
Browse files Browse the repository at this point in the history
  • Loading branch information
hurngchunlee committed Sep 28, 2022
1 parent a476b1e commit f7a1deb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion streamer/lib/modalityUSER.js
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ var _execStreamerJob = function(name, config, job, cb_remove, cb_done) {
}
}).on('error', function(err) {
utility.printErr(job.id + ':USER:execStreamerJob:submitStagerJob', err);
var errmsg = 'fail submitting stager jobs: ' + JSON.stringify(src_list);
var errmsg = 'fail submitting stager jobs: ' + err;
job.log(errmsg);
return cb_async(errmsg, false);
});
Expand Down

0 comments on commit f7a1deb

Please sign in to comment.