summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Coldrick <adam.coldrick@codethink.co.uk>2015-03-27 15:07:24 +0000
committerAdam Coldrick <adam.coldrick@codethink.co.uk>2015-03-27 15:07:24 +0000
commitb94b67da0b63263babf845afa2d6f365e4f9cc15 (patch)
tree387f338757d0419a00bffd55fcb648ba54807413
parentbcd9268c0c7160ae6af5eef727f0c7faaf866ee4 (diff)
downloadmorph-baserock/adamcoldrick/wip-distbuild-fixes.tar.gz
Change-Id: Idb57f1032e24847ba20cef30476bb6a0b438a896
-rw-r--r--distbuild/mainloop.py2
-rw-r--r--distbuild/worker_build_scheduler.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/distbuild/mainloop.py b/distbuild/mainloop.py
index d4aaf091..e7c0cc3b 100644
--- a/distbuild/mainloop.py
+++ b/distbuild/mainloop.py
@@ -103,9 +103,7 @@ class MainLoop(object):
self.queue_event(event_source, event)
for event_source, event in self._dequeue_events():
- logging.debug('-----')
for machine in self._machines[:]:
- logging.debug('SOTK-DEBUGS: %s' % machine)
for new_event in machine.handle_event(event_source, event):
self.queue_event(event_source, new_event)
if machine.state is None:
diff --git a/distbuild/worker_build_scheduler.py b/distbuild/worker_build_scheduler.py
index 4b91bb6d..7b29c078 100644
--- a/distbuild/worker_build_scheduler.py
+++ b/distbuild/worker_build_scheduler.py
@@ -593,6 +593,8 @@ class WorkerConnection(distbuild.StateMachine):
logging.debug('Requesting shared artifact cache to get artifacts')
job = self._current_job
+ logging.debug('current: %s' % str(job.id))
+ logging.debug('active: %s' % str(self._active_jobs))
kind = job.artifact.source.morphology['kind']
if kind == 'chunk':