summaryrefslogtreecommitdiff
path: root/distbuild/initiator.py
diff options
context:
space:
mode:
Diffstat (limited to 'distbuild/initiator.py')
-rw-r--r--distbuild/initiator.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/distbuild/initiator.py b/distbuild/initiator.py
index 84a1f27f..f2cb77e9 100644
--- a/distbuild/initiator.py
+++ b/distbuild/initiator.py
@@ -239,6 +239,10 @@ class Initiator(distbuild.StateMachine):
step_name = msg['step_name']
if step_name in self._step_outputs:
status = 'Finished building %s' % step_name
+
+ if 'worker_name' in msg:
+ status += ' on %s' % msg['worker_name']
+
self._app.status(msg=status)
self._write_status_to_build_log(self._get_output(msg), status)