From 79e6d61141159b4547a7e9939d71cb38f6810f0e Mon Sep 17 00:00:00 2001 From: Eric Eastwood Date: Thu, 18 May 2023 02:49:39 -0500 Subject: [PATCH] Fix typo --- synapse/storage/databases/state/bg_updates.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/synapse/storage/databases/state/bg_updates.py b/synapse/storage/databases/state/bg_updates.py index 1b18a2c4e4..6826e96761 100644 --- a/synapse/storage/databases/state/bg_updates.py +++ b/synapse/storage/databases/state/bg_updates.py @@ -280,8 +280,9 @@ class StateGroupBackgroundUpdateStore(SQLBaseStore): else: # It's also completely normal for us not to have a previous # state_group to build on top of if this is the first group being - # processes or we are processing a bunch of groups from different - # rooms which of course will never link together. + # processed or we are processing a bunch of groups from different + # rooms which of course will never link together (competely + # different DAGs). results[group] = partial_state_map_for_state_group state_groups_we_have_already_fetched.add(group)