diff options
author | Olivier Wilkinson (reivilibre) <oliverw@matrix.org> | 2021-11-09 11:58:35 +0000 |
---|---|---|
committer | Olivier Wilkinson (reivilibre) <oliverw@matrix.org> | 2021-11-09 11:58:35 +0000 |
commit | 9d3b04e7495e147829a09c56a9e5762467d18b78 (patch) | |
tree | 39cd3fadcbc3e3be8c89777099724643730c5df1 /synapse/storage/databases/main/room_batch.py | |
parent | Merge remote-tracking branch 'origin/release-v1.46' into matrix-org-hotfixes (diff) | |
parent | Include cross-signing signatures when syncing remote devices for the first ti... (diff) | |
download | synapse-9d3b04e7495e147829a09c56a9e5762467d18b78.tar.xz |
Merge branch 'release-v1.47' into matrix-org-hotfixes
Diffstat (limited to 'synapse/storage/databases/main/room_batch.py')
-rw-r--r-- | synapse/storage/databases/main/room_batch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/databases/main/room_batch.py b/synapse/storage/databases/main/room_batch.py index dcbce8fdcf..97b2618437 100644 --- a/synapse/storage/databases/main/room_batch.py +++ b/synapse/storage/databases/main/room_batch.py @@ -18,7 +18,7 @@ from synapse.storage._base import SQLBaseStore class RoomBatchStore(SQLBaseStore): - async def get_insertion_event_by_batch_id( + async def get_insertion_event_id_by_batch_id( self, room_id: str, batch_id: str ) -> Optional[str]: """Retrieve a insertion event ID. |