Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit f0863f7

Browse files
author
David Robertson
committed
[DO NOT COMMIT] Revert "Add comma missing from #15382. (#15429)"
This reverts commit 38272be. This demonstartes that this PR would have spotted the underlying error.
1 parent 75a70af commit f0863f7

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

changelog.d/15429.misc

-1
This file was deleted.

synapse/storage/databases/main/event_federation.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1712,7 +1712,7 @@ def _delete_old_forward_extrem_cache_txn(txn: LoggingTransaction) -> None:
17121712
DELETE FROM stream_ordering_to_exterm
17131713
WHERE stream_ordering < ?
17141714
"""
1715-
txn.execute(sql, (self.stream_ordering_month_ago,))
1715+
txn.execute(sql, self.stream_ordering_month_ago)
17161716

17171717
await self.db_pool.runInteraction(
17181718
"_delete_old_forward_extrem_cache",

0 commit comments

Comments
 (0)