mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-06 05:14:57 -04:00
Fix remove_stale_pushers job on SQLite. (#10843)
This commit is contained in:
parent
6b6bb81b23
commit
437961744c
9 changed files with 27 additions and 23 deletions
|
@ -324,7 +324,7 @@ class PusherWorkerStore(SQLBaseStore):
|
|||
txn,
|
||||
table="pushers",
|
||||
column="user_name",
|
||||
iterable=users,
|
||||
values=users,
|
||||
keyvalues={},
|
||||
)
|
||||
|
||||
|
@ -373,7 +373,7 @@ class PusherWorkerStore(SQLBaseStore):
|
|||
txn,
|
||||
table="pushers",
|
||||
column="id",
|
||||
iterable=(pusher_id for pusher_id, token in pushers if token is None),
|
||||
values=[pusher_id for pusher_id, token in pushers if token is None],
|
||||
keyvalues={},
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue