mirror of
https://mau.dev/maunium/synapse.git
synced 2025-03-05 05:40:19 +01:00
Fix bug in replication
This commit is contained in:
parent
2a49f177fe
commit
a5a4ef3fd7
1 changed files with 1 additions and 1 deletions
|
@ -648,7 +648,7 @@ class _TransactionQueue(object):
|
|||
# list of (pending_pdu, deferred, order)
|
||||
pending_pdus = self.pending_pdus_by_dest.pop(destination, [])
|
||||
pending_edus = self.pending_edus_by_dest.pop(destination, [])
|
||||
pending_failures = self.pending_failures_by_dest(destination, [])
|
||||
pending_failures = self.pending_failures_by_dest.pop(destination, [])
|
||||
|
||||
if not pending_pdus and not pending_edus and not pending_failures:
|
||||
return
|
||||
|
|
Loading…
Add table
Reference in a new issue