diff options
author | Erik Johnston <erik@matrix.org> | 2021-03-17 13:20:08 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-17 13:20:08 +0000 |
commit | ad721fc559b4af6140852adf58c93ae6ab0bf6b5 (patch) | |
tree | e59be4517618e3f7df56d82bc4fe86690198a889 /synapse/handlers/device.py | |
parent | Prep work for removing `outlier` from `internal_metadata` (#9411) (diff) | |
download | synapse-ad721fc559b4af6140852adf58c93ae6ab0bf6b5.tar.xz |
Fix bad naming of storage function (#9637)
We had two functions named `get_forward_extremities_for_room` and `get_forward_extremeties_for_room` that took different paramters. We rename one of them to avoid confusion.
Diffstat (limited to 'synapse/handlers/device.py')
-rw-r--r-- | synapse/handlers/device.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/device.py b/synapse/handlers/device.py index df3cdc8fba..6aa3f73eee 100644 --- a/synapse/handlers/device.py +++ b/synapse/handlers/device.py @@ -166,7 +166,7 @@ class DeviceWorkerHandler(BaseHandler): # Fetch the current state at the time. try: - event_ids = await self.store.get_forward_extremeties_for_room( + event_ids = await self.store.get_forward_extremities_for_room_at_stream_ordering( room_id, stream_ordering=stream_ordering ) except errors.StoreError: |