Skip to content
Snippets Groups Projects
Unverified Commit 84f235ae authored by Eric Eastwood's avatar Eric Eastwood Committed by GitHub
Browse files

Rename to more clear `get_insertion_event_id_by_batch_id` (MSC2716) (#11244)

`get_insertion_event_by_batch_id` -> `get_insertion_event_id_by_batch_id`

Split out from https://github.com/matrix-org/synapse/pull/11114
parent 4ee71b96
No related branches found
No related tags found
No related merge requests found
Fix [MSC2716](https://github.com/matrix-org/matrix-doc/pull/2716) historical messages backfilling in random order on remote homeservers.
...@@ -1507,7 +1507,7 @@ class EventCreationHandler: ...@@ -1507,7 +1507,7 @@ class EventCreationHandler:
conflicting_insertion_event_id = None conflicting_insertion_event_id = None
if next_batch_id: if next_batch_id:
conflicting_insertion_event_id = ( conflicting_insertion_event_id = (
await self.store.get_insertion_event_by_batch_id( await self.store.get_insertion_event_id_by_batch_id(
event.room_id, next_batch_id event.room_id, next_batch_id
) )
) )
......
...@@ -112,7 +112,7 @@ class RoomBatchSendEventRestServlet(RestServlet): ...@@ -112,7 +112,7 @@ class RoomBatchSendEventRestServlet(RestServlet):
# and have the batch connected. # and have the batch connected.
if batch_id_from_query: if batch_id_from_query:
corresponding_insertion_event_id = ( corresponding_insertion_event_id = (
await self.store.get_insertion_event_by_batch_id( await self.store.get_insertion_event_id_by_batch_id(
room_id, batch_id_from_query room_id, batch_id_from_query
) )
) )
......
...@@ -18,7 +18,7 @@ from synapse.storage._base import SQLBaseStore ...@@ -18,7 +18,7 @@ from synapse.storage._base import SQLBaseStore
class RoomBatchStore(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 self, room_id: str, batch_id: str
) -> Optional[str]: ) -> Optional[str]:
"""Retrieve a insertion event ID. """Retrieve a insertion event ID.
......
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