Merge branch 'consumeErrors' of github.com:matrix-org/synapse into develop

This commit is contained in:
Erik Johnston 2015-02-17 15:18:17 +00:00
commit fa6c93bd26
6 changed files with 12 additions and 10 deletions

View file

@ -141,7 +141,8 @@ class Notifier(object):
with PreserveLoggingContext():
yield defer.DeferredList(
[notify(l).addErrback(eb) for l in listeners]
[notify(l).addErrback(eb) for l in listeners],
consumeErrors=True,
)
@defer.inlineCallbacks
@ -209,7 +210,8 @@ class Notifier(object):
with PreserveLoggingContext():
yield defer.DeferredList(
[notify(l).addErrback(eb) for l in listeners]
[notify(l).addErrback(eb) for l in listeners],
consumeErrors=True,
)
@defer.inlineCallbacks