forked from MirrorHub/synapse
Fix occasional 'tuple index out of range' error
This fixes a bug in _delete_existing_rows_txn which was introduced in #3435 (though it's been on matrix-org-hotfixes for *years*). This code is only called when there is some sort of conflict the first time we try to persist an event, so it only happens rarely. Still, the exceptions are annoying.
This commit is contained in:
parent
1e5dbdcbb1
commit
1be94440d3
2 changed files with 2 additions and 1 deletions
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 a new issue