summary refs log tree commit diff
path: root/synapse/storage/client_ips.py
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2018-04-06 09:14:40 +0100
committerRichard van der Hoff <richard@matrix.org>2018-04-06 09:14:40 +0100
commit052df50e498121d5c3cae5c5251b00379992f660 (patch)
tree3f57d4b2b7d5c3044f93e929dce0b5720592f716 /synapse/storage/client_ips.py
parentFix earlier logging patch (diff)
parentMerge pull request #2886 from turt2live/travis/new-worker-docs (diff)
downloadsynapse-052df50e498121d5c3cae5c5251b00379992f660.tar.xz
Merge branch 'develop' into matrix-org-hotfixes
Diffstat (limited to 'synapse/storage/client_ips.py')
-rw-r--r--synapse/storage/client_ips.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/synapse/storage/client_ips.py b/synapse/storage/client_ips.py

index fba3ecc09c..0bbbedb237 100644 --- a/synapse/storage/client_ips.py +++ b/synapse/storage/client_ips.py
@@ -48,6 +48,13 @@ class ClientIpStore(background_updates.BackgroundUpdateStore): columns=["user_id", "device_id", "last_seen"], ) + self.register_background_index_update( + "user_ips_last_seen_index", + index_name="user_ips_last_seen", + table="user_ips", + columns=["user_id", "last_seen"], + ) + # (user_id, access_token, ip) -> (user_agent, device_id, last_seen) self._batch_row_update = {}