mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 22:14:55 -04:00
Add some logging for syncing to_device events
Attempt to track down the loss of to_device events (https://github.com/vector-im/riot-web/issues/2711 etc).
This commit is contained in:
parent
35129ac998
commit
edc6a1e4f9
2 changed files with 10 additions and 5 deletions
|
@ -242,7 +242,7 @@ class DeviceInboxStore(SQLBaseStore):
|
|||
device_id(str): The recipient device_id.
|
||||
up_to_stream_id(int): Where to delete messages up to.
|
||||
Returns:
|
||||
A deferred that resolves when the messages have been deleted.
|
||||
A deferred that resolves to the number of messages deleted.
|
||||
"""
|
||||
def delete_messages_for_device_txn(txn):
|
||||
sql = (
|
||||
|
@ -251,6 +251,7 @@ class DeviceInboxStore(SQLBaseStore):
|
|||
" AND stream_id <= ?"
|
||||
)
|
||||
txn.execute(sql, (user_id, device_id, up_to_stream_id))
|
||||
return txn.rowcount
|
||||
|
||||
return self.runInteraction(
|
||||
"delete_messages_for_device", delete_messages_for_device_txn
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue