diff options
author | Richard van der Hoff <richard@matrix.org> | 2020-05-21 12:56:27 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2020-05-21 13:25:41 +0100 |
commit | 075375bbc97f16c5750c446534342b3a63d9be5a (patch) | |
tree | 3789fa46a7f7fe0e907b9e6089e72d89ced2de7e /synapse/federation | |
parent | Fix bug in persist events when dealing with non member types. (#7548) (diff) | |
download | synapse-075375bbc97f16c5750c446534342b3a63d9be5a.tar.xz |
add a comment
Diffstat (limited to 'synapse/federation')
-rw-r--r-- | synapse/federation/sender/per_destination_queue.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/synapse/federation/sender/per_destination_queue.py b/synapse/federation/sender/per_destination_queue.py index 276a2b596f..4e698981a4 100644 --- a/synapse/federation/sender/per_destination_queue.py +++ b/synapse/federation/sender/per_destination_queue.py @@ -80,6 +80,9 @@ class PerDestinationQueue(object): # a list of tuples of (pending pdu, order) self._pending_pdus = [] # type: List[Tuple[EventBase, int]] + + # XXX this is never actually used: see + # https://github.com/matrix-org/synapse/issues/7549 self._pending_edus = [] # type: List[Edu] # Pending EDUs by their "key". Keyed EDUs are EDUs that get clobbered |