diff options
author | Erik Johnston <erik@matrix.org> | 2015-02-17 10:03:23 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-02-17 10:07:01 +0000 |
commit | 72a4de2ce627528a13bda480403344ffde6275d3 (patch) | |
tree | 0c295e05052a5f50be0f1447fe4f284b8c8e335d /synapse/federation/transaction_queue.py | |
parent | Merge pull request #73 from matrix-org/hotfixes-v0.7.0f (diff) | |
download | synapse-72a4de2ce627528a13bda480403344ffde6275d3.tar.xz |
Use consumeErrors=True on all DeferredLists.
This is so that the DeferredLists actually consume the error instead of propogating down the non-existent errback chain. This should reduce the number of unhandled errors we are seeing.
Diffstat (limited to 'synapse/federation/transaction_queue.py')
-rw-r--r-- | synapse/federation/transaction_queue.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/federation/transaction_queue.py b/synapse/federation/transaction_queue.py index 731019ad9f..bb20f2ebab 100644 --- a/synapse/federation/transaction_queue.py +++ b/synapse/federation/transaction_queue.py @@ -98,7 +98,7 @@ class TransactionQueue(object): deferreds.append(deferred) - yield defer.DeferredList(deferreds) + yield defer.DeferredList(deferreds, consumeErrors=True) # NO inlineCallbacks def enqueue_edu(self, edu): |