Fix current_state_events membership background update.
Turns out not all rooms are in `rooms`, so lets fetch the room list from `current_state_events`. We move the delta file to force it to be run again.
This commit is contained in:
parent
7a48d0bab8
commit
15056ca208
|
@ -935,7 +935,7 @@ class RoomMemberStore(RoomMemberWorkerStore):
|
|||
while processed < batch_size:
|
||||
txn.execute(
|
||||
"""
|
||||
SELECT MIN(room_id) FROM rooms WHERE room_id > ?
|
||||
SELECT MIN(room_id) FROM current_state_events WHERE room_id > ?
|
||||
""",
|
||||
(last_processed_room,),
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue