mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04:00
Merge pull request #3607 from matrix-org/rav/fix_persist_events_integrity_error
Fix occasional 'tuple index out of range' error
This commit is contained in:
commit
32b30e15f2
1
changelog.d/3607.bugfix
Normal file
1
changelog.d/3607.bugfix
Normal file
@ -0,0 +1 @@
|
||||
Fix 'tuple index out of range' error
|
@ -1137,7 +1137,7 @@ class EventsStore(EventsWorkerStore):
|
||||
):
|
||||
txn.executemany(
|
||||
"DELETE FROM %s WHERE room_id = ? AND event_id = ?" % (table,),
|
||||
[(ev.event_id,) for ev, _ in events_and_contexts]
|
||||
[(ev.room_id, ev.event_id) for ev, _ in events_and_contexts]
|
||||
)
|
||||
|
||||
def _store_event_txn(self, txn, events_and_contexts):
|
||||
|
Loading…
Reference in New Issue
Block a user