summary refs log tree commit diff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--synapse/federation/send_queue.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/federation/send_queue.py b/synapse/federation/send_queue.py
index 657a930497..df807e57a6 100644
--- a/synapse/federation/send_queue.py
+++ b/synapse/federation/send_queue.py
@@ -468,7 +468,7 @@ TypeToRow = {
 }
 
 
-BufferedToSend = namedtuple("BufferedToSend", (
+ParsedFederationStreamData = namedtuple("ParsedFederationStreamData", (
     "presence",  # dict of destination -> [UserPresenceState]
     "keyed_edus",  # dict of destination -> { key -> Edu }
     "edus",  # dict of destination -> [Edu]
@@ -490,7 +490,7 @@ def process_rows_for_federation(federation_sender, rows):
     # rows that need to be handled differently. We parse the rows, put
     # them into the appropriate collection and then send them off.
 
-    buff = BufferedToSend(
+    buff = ParsedFederationStreamData(
         presence={},
         keyed_edus={},
         edus={},