diff options
author | Richard van der Hoff <github@rvanderhoff.org.uk> | 2017-11-29 17:56:46 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-29 17:56:46 +0000 |
commit | 7a48a6b63e9b4c1a81e04f2a0c8ac31a053ff29a (patch) | |
tree | f8d8f53bdf064d0033be76bc3c4ce8bc1582540f /synapse/storage | |
parent | Merge pull request #2718 from matrix-org/rav/notify_logcontexts (diff) | |
parent | Delete devices in various logout situations (diff) | |
download | synapse-7a48a6b63e9b4c1a81e04f2a0c8ac31a053ff29a.tar.xz |
Merge pull request #2722 from matrix-org/rav/delete_device_on_logout
Delete devices and pushers on logouts etc
Diffstat (limited to 'synapse/storage')
-rw-r--r-- | synapse/storage/registration.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/synapse/storage/registration.py b/synapse/storage/registration.py index 8b9544c209..3aa810981f 100644 --- a/synapse/storage/registration.py +++ b/synapse/storage/registration.py @@ -254,8 +254,8 @@ class RegistrationStore(background_updates.BackgroundUpdateStore): If None, tokens associated with any device (or no device) will be deleted Returns: - defer.Deferred[list[str, str|None]]: a list of the deleted tokens - and device IDs + defer.Deferred[list[str, int, str|None, int]]: a list of + (token, token id, device id) for each of the deleted tokens """ def f(txn): keyvalues = { @@ -272,12 +272,12 @@ class RegistrationStore(background_updates.BackgroundUpdateStore): values.append(except_token_id) txn.execute( - "SELECT token, device_id FROM access_tokens WHERE %s" % where_clause, + "SELECT token, id, device_id FROM access_tokens WHERE %s" % where_clause, values ) - tokens_and_devices = [(r[0], r[1]) for r in txn] + tokens_and_devices = [(r[0], r[1], r[2]) for r in txn] - for token, _ in tokens_and_devices: + for token, _, _ in tokens_and_devices: self._invalidate_cache_and_stream( txn, self.get_user_by_access_token, (token,) ) |