Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Fix event chain bg update. (#9118)
Browse files Browse the repository at this point in the history
We passed in a graph to `sorted_topologically` which didn't have an
entry for each node (as we dropped nodes with no edges).
  • Loading branch information
erikjohnston authored Jan 14, 2021
1 parent d2479c6 commit 1a08e0c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.d/9118.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Improve efficiency of large state resolutions.
2 changes: 1 addition & 1 deletion synapse/util/iterutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def sorted_topologically(
node = heapq.heappop(zero_degree)
yield node

for edge in reverse_graph[node]:
for edge in reverse_graph.get(node, []):
if edge in degree_map:
degree_map[edge] -= 1
if degree_map[edge] == 0:
Expand Down
8 changes: 8 additions & 0 deletions tests/util/test_itertools.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,14 @@ def test_empty(self):
graph = {} # type: Dict[int, List[int]]
self.assertEqual(list(sorted_topologically([], graph)), [])

def test_handle_empty_graph(self):
"Test that a graph where a node doesn't have an entry is treated as empty"

graph = {} # type: Dict[int, List[int]]

# For disconnected nodes the output is simply sorted.
self.assertEqual(list(sorted_topologically([1, 2], graph)), [1, 2])

def test_disconnected(self):
"Test that a graph with no edges work"

Expand Down

0 comments on commit 1a08e0c

Please sign in to comment.