Skip to content

Commit

Permalink
Merge pull request #509 from mixmaxhq/brad/fix-undefined-ref
Browse files Browse the repository at this point in the history
fix undefined ref
  • Loading branch information
manast committed Apr 23, 2017
2 parents 07fae7d + 50aa258 commit ffde743
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/job.js
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ Job.prototype.moveToFailed = function(err, ignoreLock){
reject();
}else{
if(result === -1){
reject(new Error('Missing Job ' + jobId + ' during retry'));
reject(new Error('Missing Job ' + _this.id + ' during retry'));
}
}
});
Expand Down

0 comments on commit ffde743

Please sign in to comment.