diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2022-03-28 19:20:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-28 19:20:14 +0100 |
commit | 287a9c1e20e1e271d69be581d6bb8ee5a8de9d88 (patch) | |
tree | f5a88ab3f771735092b56932387fc4389f2ced5a /changelog.d | |
parent | Add some type hints to datastore. (#12255) (diff) | |
download | synapse-287a9c1e20e1e271d69be581d6bb8ee5a8de9d88.tar.xz |
Exclude outliers in `on_backfill_request` (#12314)
When we are processing a `/backfill` request from a remote server, exclude any outliers from consideration early on. We can't return outliers anyway (since we don't know the state at the outlier), and filtering them out earlier means that we won't attempt to calulate the state for them.
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/12314.misc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/12314.misc b/changelog.d/12314.misc new file mode 100644 index 0000000000..9f333e718a --- /dev/null +++ b/changelog.d/12314.misc @@ -0,0 +1 @@ +Avoid trying to calculate the state at outlier events. |