0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-28 23:48:19 +02:00

Move and rename variable

This commit is contained in:
Erik Johnston 2018-05-16 10:52:06 +01:00
parent 5f27ed75ad
commit c945af8799

View file

@ -1825,8 +1825,10 @@ class EventsStore(EventsWorkerStore):
)
def _purge_history_txn(
self, txn, room_id, token, delete_local_events,
self, txn, room_id, token_str, delete_local_events,
):
token = RoomStreamToken.parse(token_str)
# Tables that should be pruned:
# event_auth
# event_backward_extremities
@ -1855,8 +1857,6 @@ class EventsStore(EventsWorkerStore):
# furthermore, we might already have the table from a previous (failed)
# purge attempt, so let's drop the table first.
token = RoomStreamToken.parse(token)
txn.execute("DROP TABLE IF EXISTS events_to_purge")
txn.execute(