diff options
author | reivilibre <oliverw@matrix.org> | 2023-04-13 14:06:25 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-13 15:06:25 +0100 |
commit | 38272be03710f0675d7f73d15a8a9c4398619b68 (patch) | |
tree | a9210f66b1c22c6a56a0bfd66d6b0794c9088c3a /synapse | |
parent | Implement MSC2174: move redacts to a content property. (#15395) (diff) | |
download | synapse-38272be03710f0675d7f73d15a8a9c4398619b68.tar.xz |
Add comma missing from #15382. (#15429)
* Add missing comma * Newsfile Signed-off-by: Olivier Wilkinson (reivilibre) <oliverw@matrix.org> --------- Signed-off-by: Olivier Wilkinson (reivilibre) <oliverw@matrix.org>
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/storage/databases/main/event_federation.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/databases/main/event_federation.py b/synapse/storage/databases/main/event_federation.py index 9e6011e8ea..2ad6fa7d5e 100644 --- a/synapse/storage/databases/main/event_federation.py +++ b/synapse/storage/databases/main/event_federation.py @@ -1708,7 +1708,7 @@ class EventFederationWorkerStore(SignatureWorkerStore, EventsWorkerStore, SQLBas WHERE stream_ordering < ? """ txn.execute( - sql, (self.stream_ordering_month_ago) # type: ignore[attr-defined] + sql, (self.stream_ordering_month_ago,) # type: ignore[attr-defined] ) await self.db_pool.runInteraction( |