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

Commit

Permalink
[DO NOT COMMIT] Revert "Add comma missing from #15382. (#15429)"
Browse files Browse the repository at this point in the history
This reverts commit 38272be.

This demonstartes that this PR would have spotted the underlying error.
  • Loading branch information
David Robertson committed Apr 13, 2023
1 parent 75a70af commit f0863f7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion changelog.d/15429.misc

This file was deleted.

2 changes: 1 addition & 1 deletion synapse/storage/databases/main/event_federation.py
Expand Up @@ -1712,7 +1712,7 @@ def _delete_old_forward_extrem_cache_txn(txn: LoggingTransaction) -> None:
DELETE FROM stream_ordering_to_exterm
WHERE stream_ordering < ?
"""
txn.execute(sql, (self.stream_ordering_month_ago,))
txn.execute(sql, self.stream_ordering_month_ago)

await self.db_pool.runInteraction(
"_delete_old_forward_extrem_cache",
Expand Down

0 comments on commit f0863f7

Please sign in to comment.