1
0
Fork 0
mirror of https://github.com/element-hq/synapse.git synced 2025-03-31 03:45:13 +00:00
This commit is contained in:
Devon Hudson 2025-03-28 01:42:07 +01:00 committed by GitHub
commit 4f0d5c545e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 24 additions and 4 deletions

View file

@ -509,9 +509,13 @@ class EventsPersistenceStorageController:
)
)
await self.persist_events_store.update_current_state(
room_id, delta, sliding_sync_table_changes
)
logger.error("Devon: persist update_current_state: %s %s %s", state, delta, sliding_sync_table_changes)
# FIXME: Devon removed this to stop deleting the leave event from the sliding sync
# tables
# await self.persist_events_store.update_current_state(
# room_id, delta, sliding_sync_table_changes
# )
async def _calculate_current_state(self, room_id: str) -> StateMap[str]:
"""Calculate the current state of a room, based on the forward extremities
@ -638,6 +642,21 @@ class EventsPersistenceStorageController:
room_id, [e for e, _ in chunk]
)
# FIXME: Temporary hack to add remote invite to state delta
if not new_forward_extremities:
state_map: MutableStateMap[str] = {}
for (a, _) in chunk:
if a.type == EventTypes.Member and a.membership == Membership.LEAVE:
state_key = a.get_state_key()
if state_key:
logger.error("Devon: injecting hack into state map")
state_map[(a.type, state_key)] = a.event_id
if state_map:
state_delta_for_room = DeltaState([], state_map, False)
logger.error("Devon: state delta for room: %s", state_delta_for_room)
# Stop the state groups from being deleted while we're persisting
# them.
async with self._state_deletion_store.persisting_state_group_references(

View file

@ -562,7 +562,8 @@ class PersistEventsStore:
#
# Ideally, we could additionally assert that we're only here for
# valid non-join membership transitions.
assert delta_state.no_longer_in_room
#assert delta_state.no_longer_in_room
pass
# Handle gathering info for the `sliding_sync_joined_rooms` table
#