Skip to content

Commit

Permalink
Correctly handle the result of a DeferredList in svn_buildbot.py
Browse files Browse the repository at this point in the history
Fixes #2766.
  • Loading branch information
djmitche committed May 26, 2014
1 parent 9a4fb67 commit effe043
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion master/contrib/svn_buildbot.py
Expand Up @@ -240,7 +240,7 @@ def sendChanges(self, opts, changes):
def sendAllChanges(self, remote, changes):
dl = [remote.callRemote('addChange', change)
for change in changes]
return defer.DeferredList(dl)
return defer.gatherResults(dl, consumeErrors=True)

def run(self):
opts = Options()
Expand Down

0 comments on commit effe043

Please sign in to comment.