Skip to content
Snippets Groups Projects
Unverified Commit 5615eb5c authored by Richard van der Hoff's avatar Richard van der Hoff Committed by GitHub
Browse files

Rename `_get_e2e_device_keys_txn` (#8222)

... to `_get_e2e_device_keys_and_signatures_txn`, to better reflect what it
does.
parent 54f8d73c
No related branches found
No related tags found
No related merge requests found
Refactor queries for device keys and cross-signatures.
......@@ -256,8 +256,8 @@ class DeviceWorkerStore(SQLBaseStore):
"""
devices = (
await self.db_pool.runInteraction(
"_get_e2e_device_keys_txn",
self._get_e2e_device_keys_txn,
"get_e2e_device_keys_and_signatures_txn",
self._get_e2e_device_keys_and_signatures_txn,
query_map.keys(),
include_all_devices=True,
include_deleted_devices=True,
......
......@@ -51,7 +51,7 @@ class EndToEndKeyWorkerStore(SQLBaseStore):
) -> Tuple[int, List[JsonDict]]:
now_stream_id = self.get_device_stream_token()
devices = self._get_e2e_device_keys_txn(txn, [(user_id, None)])
devices = self._get_e2e_device_keys_and_signatures_txn(txn, [(user_id, None)])
if devices:
user_devices = devices[user_id]
......@@ -96,7 +96,9 @@ class EndToEndKeyWorkerStore(SQLBaseStore):
return {}
results = await self.db_pool.runInteraction(
"get_e2e_device_keys", self._get_e2e_device_keys_txn, query_list,
"get_e2e_device_keys_and_signatures_txn",
self._get_e2e_device_keys_and_signatures_txn,
query_list,
)
# Build the result structure, un-jsonify the results, and add the
......@@ -120,9 +122,9 @@ class EndToEndKeyWorkerStore(SQLBaseStore):
return rv
@trace
def _get_e2e_device_keys_txn(
def _get_e2e_device_keys_and_signatures_txn(
self, txn, query_list, include_all_devices=False, include_deleted_devices=False
):
) -> Dict[str, Dict[str, Optional[Dict]]]:
set_tag("include_all_devices", include_all_devices)
set_tag("include_deleted_devices", include_deleted_devices)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment