diff options
author | Erik Johnston <erik@matrix.org> | 2014-08-29 12:08:33 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-08-29 12:08:33 +0100 |
commit | 5dd38d579b45be26c27b1a109a1d413c3b0425a2 (patch) | |
tree | dd809613d83ec3a8a8bb73b79e524b074eb2326e /synapse/federation | |
parent | Turn of trace_function logging (diff) | |
download | synapse-5dd38d579b45be26c27b1a109a1d413c3b0425a2.tar.xz |
Fix a couple of bugs in presence handler related to pushing updatesto the correct user. Fix presence tests.
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 |