Skip to content
Snippets Groups Projects
Unverified Commit e0992fcc authored by Erik Johnston's avatar Erik Johnston Committed by GitHub
Browse files

Log when we delete room in bg update (#6816)

parent 184303b8
No related branches found
No related tags found
No related merge requests found
Add background update to clean out left rooms from current state.
...@@ -365,6 +365,8 @@ class MainStateBackgroundUpdateStore(RoomMemberWorkerStore): ...@@ -365,6 +365,8 @@ class MainStateBackgroundUpdateStore(RoomMemberWorkerStore):
left_rooms = set(room_ids) - joined_room_ids left_rooms = set(room_ids) - joined_room_ids
logger.info("Deleting current state left rooms: %r", left_rooms)
# First we get all users that we still think were joined to the # First we get all users that we still think were joined to the
# room. This is so that we can mark those device lists as # room. This is so that we can mark those device lists as
# potentially stale, since there may have been a period where the # potentially stale, since there may have been a period where the
......
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