diff options
author | Erik Johnston <erik@matrix.org> | 2017-04-10 10:03:07 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2017-04-10 10:03:07 +0100 |
commit | f8434db549acd400e880a1e2583ec2d077d46ebf (patch) | |
tree | 0647e6ac2c9db3c769a7e723e140e9c91e976d04 /synapse/federation/send_queue.py | |
parent | Comments (diff) | |
download | synapse-f8434db549acd400e880a1e2583ec2d077d46ebf.tar.xz |
Change name
Diffstat (limited to 'synapse/federation/send_queue.py')
-rw-r--r-- | synapse/federation/send_queue.py | 4 |
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={}, |