diff options
author | Erik Johnston <erik@matrix.org> | 2017-05-25 17:08:41 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2017-05-25 17:24:44 +0100 |
commit | dfbda5e0250adfa762f5491c7efb2666866db034 (patch) | |
tree | 0004c9e9e0bb8d7e8269eec3ca366731bd5a4390 /synapse/federation | |
parent | Don't return weird prev_group (diff) | |
download | synapse-dfbda5e0250adfa762f5491c7efb2666866db034.tar.xz |
Faster cache for get_joined_hosts
Diffstat (limited to 'synapse/federation')
-rw-r--r-- | synapse/federation/transaction_queue.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/federation/transaction_queue.py b/synapse/federation/transaction_queue.py index a15198e05d..4c25ef1106 100644 --- a/synapse/federation/transaction_queue.py +++ b/synapse/federation/transaction_queue.py @@ -187,6 +187,8 @@ class TransactionQueue(object): prev_id for prev_id, _ in event.prev_events ], ) + destinations = set(destinations) + logger.info("destinations: %r", destinations) if send_on_behalf_of is not None: # If we are sending the event on behalf of another server |