Skip to content
Snippets Groups Projects
Commit f8434db5 authored by Erik Johnston's avatar Erik Johnston
Browse files

Change name

parent ab904caf
No related branches found
No related tags found
No related merge requests found
...@@ -468,7 +468,7 @@ TypeToRow = { ...@@ -468,7 +468,7 @@ TypeToRow = {
} }
BufferedToSend = namedtuple("BufferedToSend", ( ParsedFederationStreamData = namedtuple("ParsedFederationStreamData", (
"presence", # dict of destination -> [UserPresenceState] "presence", # dict of destination -> [UserPresenceState]
"keyed_edus", # dict of destination -> { key -> Edu } "keyed_edus", # dict of destination -> { key -> Edu }
"edus", # dict of destination -> [Edu] "edus", # dict of destination -> [Edu]
...@@ -490,7 +490,7 @@ def process_rows_for_federation(federation_sender, rows): ...@@ -490,7 +490,7 @@ def process_rows_for_federation(federation_sender, rows):
# rows that need to be handled differently. We parse the rows, put # rows that need to be handled differently. We parse the rows, put
# them into the appropriate collection and then send them off. # them into the appropriate collection and then send them off.
buff = BufferedToSend( buff = ParsedFederationStreamData(
presence={}, presence={},
keyed_edus={}, keyed_edus={},
edus={}, edus={},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment