Skip to content

Commit

Permalink
Increase timeout for build worker process to be ready
Browse files Browse the repository at this point in the history
  • Loading branch information
jbruni authored Aug 22, 2018
1 parent 619dd80 commit 794e796
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 794e796

Please sign in to comment.