From 37bdb6f6994a96b0de3ff88b3cef041e50c4ec18 Mon Sep 17 00:00:00 2001 From: Jimmy Zelinskie Date: Tue, 25 Oct 2016 12:45:23 -0400 Subject: [PATCH] buildcomponent: raise heartbeat timeout to 60s --- buildman/component/buildcomponent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildman/component/buildcomponent.py b/buildman/component/buildcomponent.py index e2422ddcc..8996c35ac 100644 --- a/buildman/component/buildcomponent.py +++ b/buildman/component/buildcomponent.py @@ -18,7 +18,7 @@ from data import model from data.database import BUILD_PHASE from data.model import InvalidRepositoryBuildException -HEARTBEAT_DELTA = datetime.timedelta(seconds=30) +HEARTBEAT_DELTA = datetime.timedelta(seconds=60) BUILD_HEARTBEAT_DELAY = datetime.timedelta(seconds=30) HEARTBEAT_TIMEOUT = 10 INITIAL_TIMEOUT = 25