summary refs log tree commit diff
path: root/synapse/storage/databases/main
diff options
context:
space:
mode:
authorPatrick Cloke <patrickc@matrix.org>2020-12-15 11:26:13 -0500
committerPatrick Cloke <patrickc@matrix.org>2020-12-15 11:26:13 -0500
commit863359a04fe36cfa63aa92392acb7510d76f854d (patch)
tree472ffae0e1b40905f7a0d0a18e1f20e66e4214a9 /synapse/storage/databases/main
parentMerge branch 'develop' into matrix-org-hotfixes (diff)
parentFix handling of stream tokens for push. (#8943) (diff)
downloadsynapse-863359a04fe36cfa63aa92392acb7510d76f854d.tar.xz
Merge remote-tracking branch 'origin/develop' into matrix-org-hotfixes
Diffstat (limited to 'synapse/storage/databases/main')
-rw-r--r--synapse/storage/databases/main/event_push_actions.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/synapse/storage/databases/main/event_push_actions.py b/synapse/storage/databases/main/event_push_actions.py

index 2e56dfaf31..e5c03cc609 100644 --- a/synapse/storage/databases/main/event_push_actions.py +++ b/synapse/storage/databases/main/event_push_actions.py
@@ -894,16 +894,6 @@ class EventPushActionsStore(EventPushActionsWorkerStore): pa["actions"] = _deserialize_action(pa["actions"], pa["highlight"]) return push_actions - async def get_latest_push_action_stream_ordering(self): - def f(txn): - txn.execute("SELECT MAX(stream_ordering) FROM event_push_actions") - return txn.fetchone() - - result = await self.db_pool.runInteraction( - "get_latest_push_action_stream_ordering", f - ) - return result[0] or 0 - def _remove_old_push_actions_before_txn( self, txn, room_id, user_id, stream_ordering ):