mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-05 09:24:58 -04:00
Convert misc database code to async (#8087)
This commit is contained in:
parent
7bdf9828d5
commit
894dae74fe
11 changed files with 39 additions and 64 deletions
|
@ -212,9 +212,8 @@ class ReceiptsWorkerStore(SQLBaseStore):
|
|||
cached_method_name="_get_linearized_receipts_for_room",
|
||||
list_name="room_ids",
|
||||
num_args=3,
|
||||
inlineCallbacks=True,
|
||||
)
|
||||
def _get_linearized_receipts_for_rooms(self, room_ids, to_key, from_key=None):
|
||||
async def _get_linearized_receipts_for_rooms(self, room_ids, to_key, from_key=None):
|
||||
if not room_ids:
|
||||
return {}
|
||||
|
||||
|
@ -243,7 +242,7 @@ class ReceiptsWorkerStore(SQLBaseStore):
|
|||
|
||||
return self.db_pool.cursor_to_dict(txn)
|
||||
|
||||
txn_results = yield self.db_pool.runInteraction(
|
||||
txn_results = await self.db_pool.runInteraction(
|
||||
"_get_linearized_receipts_for_rooms", f
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue