Skip to content

Commit

Permalink
Merge pull request #409 from jbruni/patch-1
Browse files Browse the repository at this point in the history
Increase timeout for build worker process to be ready
  • Loading branch information
junedkazi authored Aug 22, 2018
2 parents 619dd80 + 794e796 commit 87679d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/build-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ function prodWorker(done) {
return process.nextTick(() => callback('noworker'));
}

const timeout = setTimeout(() => callback('timeout'), 1000);
const timeout = setTimeout(() => callback('timeout'), 5000);

onWorkerReady(() => {
clearTimeout(timeout);
Expand Down

0 comments on commit 87679d6

Please sign in to comment.