diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2021-08-26 18:34:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-26 18:34:57 +0100 |
commit | 96715d763362a7027c39d571cfde3aa8b7b82fcf (patch) | |
tree | f2154010e71766bef84ca3042b24043390d90c98 /changelog.d | |
parent | Validate new m.room.power_levels events (#10232) (diff) | |
download | synapse-96715d763362a7027c39d571cfde3aa8b7b82fcf.tar.xz |
Make `backfill` and `get_missing_events` use the same codepath (#10645)
Given that backfill and get_missing_events are basically the same thing, it's somewhat crazy that we have entirely separate code paths for them. This makes backfill use the existing get_missing_events code, and then clears up all the unused code.
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/10645.misc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/10645.misc b/changelog.d/10645.misc new file mode 100644 index 0000000000..ac19263cd8 --- /dev/null +++ b/changelog.d/10645.misc @@ -0,0 +1 @@ +Make `backfill` and `get_missing_events` use the same codepath. |