mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-17 13:10:25 -04:00
Remove sent outbound device list pokes from the database (#7192)
They just get in the way.
This commit is contained in:
parent
ce72355d7f
commit
2e105c156b
3 changed files with 24 additions and 2 deletions
|
@ -227,11 +227,11 @@ class DeviceWorkerStore(SQLBaseStore):
|
|||
# get the list of device updates that need to be sent
|
||||
sql = """
|
||||
SELECT user_id, device_id, stream_id, opentracing_context FROM device_lists_outbound_pokes
|
||||
WHERE destination = ? AND ? < stream_id AND stream_id <= ? AND sent = ?
|
||||
WHERE destination = ? AND ? < stream_id AND stream_id <= ?
|
||||
ORDER BY stream_id
|
||||
LIMIT ?
|
||||
"""
|
||||
txn.execute(sql, (destination, from_stream_id, now_stream_id, False, limit))
|
||||
txn.execute(sql, (destination, from_stream_id, now_stream_id, limit))
|
||||
|
||||
return list(txn)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue