diff options
author | David Robertson <davidr@element.io> | 2023-01-24 15:28:20 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-24 15:28:20 +0000 |
commit | 4607be0b7b2165710dc2e5e68ec4281b593ca8c5 (patch) | |
tree | 9d5b3ceb98eb23364ee11f81d70b66077e5c5541 /changelog.d | |
parent | Faster joins: omit partial rooms from eager syncs until the resync completes ... (diff) | |
download | synapse-4607be0b7b2165710dc2e5e68ec4281b593ca8c5.tar.xz |
Request partial joins by default (#14905)
* Request partial joins by default This is a little sloppy, but we are trying to gain confidence in faster joins in the upcoming RC. Admins can still opt out by adding the following to their Synapse config: ```yaml experimental: faster_joins: false ``` We may revert this change before the release proper, depending on how testing in the wild goes. * Changelog * Try to fix the backfill test failures * Upgrade notes * Postgres compat?
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/14905.feature | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/14905.feature b/changelog.d/14905.feature new file mode 100644 index 0000000000..f13a4af981 --- /dev/null +++ b/changelog.d/14905.feature @@ -0,0 +1 @@ +Faster joins: request partial joins by default. Admins can opt-out of this for the time being---see the upgrade notes. |