summaryrefslogtreecommitdiff
path: root/distbuild/build_controller.py
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2014-04-14 08:03:03 +0000
committerSam Thursfield <sam.thursfield@codethink.co.uk>2014-04-14 08:03:03 +0000
commit63f7346990802f01ef76cba75495f6f7d1409028 (patch)
treebec22fdacf5c147c7b5ffc4862097323133a4d81 /distbuild/build_controller.py
parent5561d1912638de6d9b3989c2b4e8fd0b54f9bcab (diff)
parent3efa5ad43c988421c1402e9fa986b6ea25f38e1a (diff)
downloadmorph-63f7346990802f01ef76cba75495f6f7d1409028.tar.gz
Merge branch 'sam/distbuild-logging-improvements'
Reviewed-By: Richard Ipsum <richard.ipsum@codethink.co.uk> Reviewed-By: Lars Wirzenius <lars.wirzenius@codethink.co.uk>
Diffstat (limited to 'distbuild/build_controller.py')
-rw-r--r--distbuild/build_controller.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/distbuild/build_controller.py b/distbuild/build_controller.py
index b00344f9..ce8fced5 100644
--- a/distbuild/build_controller.py
+++ b/distbuild/build_controller.py
@@ -158,7 +158,11 @@ class BuildController(distbuild.StateMachine):
self._artifact_cache_server = artifact_cache_server
self._morph_instance = morph_instance
self._helper_id = None
- self.debug_transitions = True
+ self.debug_transitions = False
+
+ def __repr__(self):
+ return '<BuildController at 0x%x, request-id %s>' % (id(self),
+ self._request['id'])
def setup(self):
distbuild.crash_point()