diff options
author | Richard van der Hoff <richard@matrix.org> | 2018-02-16 14:02:31 +0000 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2018-02-20 10:37:44 +0000 |
commit | 55bef59cc7dd8fde26e363ca1de90af4d958b2de (patch) | |
tree | 6b16c5b6e7b692c17181bde349ba1b472617099a | |
parent | Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixes (diff) | |
download | synapse-55bef59cc7dd8fde26e363ca1de90af4d958b2de.tar.xz |
(Really) fix tablescan of event_push_actions on purge
commit 278d21b5 added new code to avoid the tablescan, but didn't remove the old :/
-rw-r--r-- | synapse/storage/events.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/synapse/storage/events.py b/synapse/storage/events.py index 16c97c4b09..7e79268271 100644 --- a/synapse/storage/events.py +++ b/synapse/storage/events.py @@ -2317,7 +2317,6 @@ class EventsStore(SQLBaseStore): "event_edge_hashes", "event_edges", "event_forward_extremities", - "event_push_actions", "event_reference_hashes", "event_search", "event_signatures", |