mirror of https://github.com/status-im/metro.git
Increase worker-farm timeout
Reviewed By: davidaurelio Differential Revision: D2806738 fb-gh-sync-id: a165578002415388af830f77bd96f4888143028f
This commit is contained in:
parent
3ba3503cd8
commit
d30da1ec01
|
@ -24,10 +24,10 @@ const readFile = Promise.denodeify(fs.readFile);
|
||||||
const MAX_CALLS_PER_WORKER = 600;
|
const MAX_CALLS_PER_WORKER = 600;
|
||||||
|
|
||||||
// Worker will timeout if one of the callers timeout.
|
// Worker will timeout if one of the callers timeout.
|
||||||
const DEFAULT_MAX_CALL_TIME = 120000;
|
const DEFAULT_MAX_CALL_TIME = 300000;
|
||||||
|
|
||||||
// How may times can we tolerate failures from the worker.
|
// How may times can we tolerate failures from the worker.
|
||||||
const MAX_RETRIES = 3;
|
const MAX_RETRIES = 2;
|
||||||
|
|
||||||
const validateOpts = declareOpts({
|
const validateOpts = declareOpts({
|
||||||
projectRoots: {
|
projectRoots: {
|
||||||
|
|
Loading…
Reference in New Issue