diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2020-08-14 07:24:26 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-14 07:24:26 -0400 |
commit | 894dae74fe8e79911c3c001c8b84620ef3985bf6 (patch) | |
tree | 3ba58a280c6db5eb89e116ef528061592ce8f987 /synapse/storage/databases/main/devices.py | |
parent | Remove a space at the start of a changelog entry. (diff) | |
download | synapse-894dae74fe8e79911c3c001c8b84620ef3985bf6.tar.xz |
Convert misc database code to async (#8087)
Diffstat (limited to 'synapse/storage/databases/main/devices.py')
-rw-r--r-- | synapse/storage/databases/main/devices.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/synapse/storage/databases/main/devices.py b/synapse/storage/databases/main/devices.py index 2b33060480..9a786e2929 100644 --- a/synapse/storage/databases/main/devices.py +++ b/synapse/storage/databases/main/devices.py @@ -671,10 +671,9 @@ class DeviceWorkerStore(SQLBaseStore): @cachedList( cached_method_name="get_device_list_last_stream_id_for_remote", list_name="user_ids", - inlineCallbacks=True, ) - def get_device_list_last_stream_id_for_remotes(self, user_ids: str): - rows = yield self.db_pool.simple_select_many_batch( + async def get_device_list_last_stream_id_for_remotes(self, user_ids: str): + rows = await self.db_pool.simple_select_many_batch( table="device_lists_remote_extremeties", column="user_id", iterable=user_ids, |