From 904733afc6818af2ed1dd1e4f554126dc4fc90ee Mon Sep 17 00:00:00 2001 From: fawce Date: Tue, 31 Jul 2012 22:42:01 -0400 Subject: [PATCH] bumping the heartbeat timeout --- zipline/core/monitor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zipline/core/monitor.py b/zipline/core/monitor.py index c21cdf06..50c036aa 100644 --- a/zipline/core/monitor.py +++ b/zipline/core/monitor.py @@ -41,10 +41,10 @@ log = logbook.Logger('Controller') PARAMETERS = ndict(dict( # time Monitor will wait for a heartbeat, in seconds - GENERATIONAL_PERIOD = 10, + GENERATIONAL_PERIOD = 20, # time Component will wait for GO and for a heartbeat before # timing out. - MAX_COMPONENT_WAIT = 20, + MAX_COMPONENT_WAIT = 25, ALLOWED_SKIPPED_HEARTBEATS = 10, ALLOWED_INVALID_HEARTBEATS = 3, PRESTART_HEARBEATS = 3,