Increase worker-farm timeout

Reviewed By: davidaurelio

Differential Revision: D2806738

fb-gh-sync-id: a165578002415388af830f77bd96f4888143028f
This commit is contained in:
Martin Bigio 2016-01-06 07:14:20 -08:00 committed by facebook-github-bot-4
parent 3ba3503cd8
commit d30da1ec01
1 changed files with 2 additions and 2 deletions

View File

@ -24,10 +24,10 @@ const readFile = Promise.denodeify(fs.readFile);
const MAX_CALLS_PER_WORKER = 600;
// 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.
const MAX_RETRIES = 3;
const MAX_RETRIES = 2;
const validateOpts = declareOpts({
projectRoots: {