Skip to content

Commit

Permalink
Log errors from updateAllSlaves, but don't die on them
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris AtLee committed Apr 9, 2010
1 parent 78d538c commit 808613a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion buildbot/master.py
Expand Up @@ -245,7 +245,11 @@ def _add(ign):

def _updateAllSlaves(self):
"""Notify all buildslaves about changes in their Builders."""
dl = [s.updateSlave() for s in self.slaves.values()]
dl = []
for s in self.slaves.values():
d = s.updateSlave()
d.addErrback(log.err)
dl.append(d)
return defer.DeferredList(dl)

def shouldMergeRequests(self, builder, req1, req2):
Expand Down

0 comments on commit 808613a

Please sign in to comment.