summary refs log tree commit diff
path: root/synapse/federation
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2014-08-29 12:10:00 +0100
committerErik Johnston <erik@matrix.org>2014-08-29 12:10:00 +0100
commit47fb286184dd27d8098af2fd24d22dd82205d3d5 (patch)
tree3e186226e18131b7c5d9ca89fdb4075667110c6d /synapse/federation
parentExpand architecture section to introduce room IDs, room aliases, user IDs, ev... (diff)
parentFix a couple of bugs in presence handler related to pushing updatesto the cor... (diff)
downloadsynapse-47fb286184dd27d8098af2fd24d22dd82205d3d5.tar.xz
Merge branch 'presence_logging' into develop
Diffstat (limited to 'synapse/federation')
-rw-r--r--synapse/federation/replication.py2
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