2 files changed, 1 insertions, 6 deletions
diff --git a/synapse/handlers/room.py b/synapse/handlers/room.py
index 7e6d6490aa..c35b40db0e 100644
--- a/synapse/handlers/room.py
+++ b/synapse/handlers/room.py
@@ -1147,12 +1147,6 @@ class RoomCreationHandler:
# through a different code path
depth += 1
state_map[(EventTypes.Member, creator.user.to_string())] = member_event_id
- event_to_state_group = (
- await self._storage_controllers.state.get_state_group_for_events(
- [member_event_id]
- )
- )
- current_state_group = event_to_state_group[member_event_id]
# we need the state group of the membership event as it is the current state group
event_to_state = (
diff --git a/synapse/storage/databases/state/store.py b/synapse/storage/databases/state/store.py
index b554d80d7b..1c842a6657 100644
--- a/synapse/storage/databases/state/store.py
+++ b/synapse/storage/databases/state/store.py
@@ -421,6 +421,7 @@ class StateGroupDataStore(StateBackgroundUpdateStore, SQLBaseStore):
room_id: the id of the room the events were created for
prev_group: the state group of the last event persisted before the batched events
were created
+ Returns: list of state groups that correspond to the events in `events_and_context`
"""
def insert_deltas_group_txn(
|