diff options
author | Erik Johnston <erik@matrix.org> | 2014-08-29 12:10:00 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-08-29 12:10:00 +0100 |
commit | 47fb286184dd27d8098af2fd24d22dd82205d3d5 (patch) | |
tree | 3e186226e18131b7c5d9ca89fdb4075667110c6d /synapse/federation | |
parent | Expand architecture section to introduce room IDs, room aliases, user IDs, ev... (diff) | |
parent | Fix a couple of bugs in presence handler related to pushing updatesto the cor... (diff) | |
download | synapse-47fb286184dd27d8098af2fd24d22dd82205d3d5.tar.xz |
Merge branch 'presence_logging' into develop
Diffstat (limited to 'synapse/federation')
-rw-r--r-- | synapse/federation/replication.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/federation/replication.py b/synapse/federation/replication.py index 7868575a2e..cadf574b3b 100644 --- a/synapse/federation/replication.py +++ b/synapse/federation/replication.py @@ -543,6 +543,8 @@ class _TransactionQueue(object): def eb(failure): if not deferred.called: deferred.errback(failure) + else: + logger.exception("Failed to send edu", failure) self._attempt_new_transaction(destination).addErrback(eb) return deferred |