Skip to content

Commit

Permalink
Fixed builtin load bug
Browse files Browse the repository at this point in the history
  • Loading branch information
chriso committed Mar 8, 2011
1 parent fa3c9d0 commit 9f4c4a8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/node.io/processor.js
Expand Up @@ -266,6 +266,7 @@ Processor.prototype.loadJob = function (job, callback) {
var builtins = ['digest','eval','pagerank','query','resolve','statuscode','validate','word_count'];
if (builtins.indexOf(job) !== -1) {
callback(null, job, require(__dirname + '/../../builtin/' + job + '.js'));
return;
}

//Jobs in the current working directory are given top priority
Expand Down

0 comments on commit 9f4c4a8

Please sign in to comment.