diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2022-04-26 10:27:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-26 10:27:11 +0100 |
commit | 17d99f758a768b886842cf496ff236fbe3829236 (patch) | |
tree | bd2c3b7f5cf2386d33d4224f9e2533611f288f08 /synapse/handlers/room_batch.py | |
parent | Add a table of contents to config manual (#12527) (diff) | |
download | synapse-17d99f758a768b886842cf496ff236fbe3829236.tar.xz |
Optimise backfill calculation (#12522)
Try to avoid an OOM by checking fewer extremities. Generally this is a big rewrite of _maybe_backfill, to try and fix some of the TODOs and other problems in it. It's best reviewed commit-by-commit.
Diffstat (limited to 'synapse/handlers/room_batch.py')
-rw-r--r-- | synapse/handlers/room_batch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/room_batch.py b/synapse/handlers/room_batch.py index 78e299d3a5..29de7e5bed 100644 --- a/synapse/handlers/room_batch.py +++ b/synapse/handlers/room_batch.py @@ -54,7 +54,7 @@ class RoomBatchHandler: # it has a larger `depth` but before the successor event because the `stream_ordering` # is negative before the successor event. successor_event_ids = await self.store.get_successor_events( - [most_recent_prev_event_id] + most_recent_prev_event_id ) # If we can't find any successor events, then it's a forward extremity of |