From 6b9464c99996b52cc5d2380a42d3804740785d21 Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Mon, 9 Feb 2015 16:59:21 -0500 Subject: [PATCH] Add support for 0.3 (the new builder version) --- 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 f7e2ff253..dc66dcfa1 100644 --- a/buildman/component/buildcomponent.py +++ b/buildman/component/buildcomponent.py @@ -19,7 +19,7 @@ HEARTBEAT_DELTA = datetime.timedelta(seconds=30) HEARTBEAT_TIMEOUT = 10 INITIAL_TIMEOUT = 25 -SUPPORTED_WORKER_VERSIONS = ['0.2'] +SUPPORTED_WORKER_VERSIONS = ['0.2', '0.3'] logger = logging.getLogger(__name__)