Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Fix clashing DB txn name (#15070)
Browse files Browse the repository at this point in the history
* Fix clashing DB txn name

* Newsfile
  • Loading branch information
erikjohnston committed Feb 14, 2023
1 parent f09db5c commit cb26271
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.d/15070.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix clashing database transaction name.
2 changes: 1 addition & 1 deletion synapse/storage/databases/main/end_to_end_keys.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ async def get_e2e_device_keys_and_signatures(

for batch in batch_iter(signature_query, 50):
cross_sigs_result = await self.db_pool.runInteraction(
"get_e2e_cross_signing_signatures",
"get_e2e_cross_signing_signatures_for_devices",
self._get_e2e_cross_signing_signatures_for_devices_txn,
batch,
)
Expand Down

0 comments on commit cb26271

Please sign in to comment.