summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--synapse/federation/transaction_queue.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/synapse/federation/transaction_queue.py b/synapse/federation/transaction_queue.py

index 074dae12db..c3b77419a9 100644 --- a/synapse/federation/transaction_queue.py +++ b/synapse/federation/transaction_queue.py
@@ -484,9 +484,9 @@ class TransactionQueue(object): # if we have PDUs to send, we may as well send EDUs too. Otherwise, # we only send EDUs if their delay is up - if pending_pdus or ( - destination in self.edu_tx_time_by_dest - and self.clock.time() > self.edu_tx_time_by_dest[destination] + if destination in self.edu_tx_time_by_dest and ( + pending_pdus or + self.clock.time() > self.edu_tx_time_by_dest[destination] ): del self.edu_tx_time_by_dest[destination]