summary refs log tree commit diff
path: root/synapse/storage
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2020-05-06 15:56:03 +0100
committerRichard van der Hoff <richard@matrix.org>2020-05-06 15:56:03 +0100
commit62ee86211965e366dc285a72e3dc3f6d87a76b85 (patch)
treeaa3ae2f0d827cdd182f38e3388b3879c35917139 /synapse/storage
parentMerge pull request #7428 from matrix-org/rav/cross_signing_keys_cache (diff)
parentStop Auth methods from polling the config on every req. (#7420) (diff)
downloadsynapse-62ee86211965e366dc285a72e3dc3f6d87a76b85.tar.xz
Merge branch 'release-v1.13.0' into develop
Diffstat (limited to 'synapse/storage')
-rw-r--r--synapse/storage/data_stores/main/devices.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/storage/data_stores/main/devices.py b/synapse/storage/data_stores/main/devices.py
index 536cef3abd..fe6d6ecfe0 100644
--- a/synapse/storage/data_stores/main/devices.py
+++ b/synapse/storage/data_stores/main/devices.py
@@ -536,8 +536,8 @@ class DeviceWorkerStore(SQLBaseStore):
 
         # Get set of users who *may* have changed. Users not in the returned
         # list have definitely not changed.
-        to_check = list(
-            self._device_list_stream_cache.get_entities_changed(user_ids, from_key)
+        to_check = self._device_list_stream_cache.get_entities_changed(
+            user_ids, from_key
         )
 
         if not to_check: