diff options
author | David Robertson <davidr@element.io> | 2023-01-17 12:44:15 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-17 12:44:15 +0000 |
commit | 5b3af1c7d0c5a8901fada7648136f186726fd135 (patch) | |
tree | c21d9180dc917c84ee65084fede02973fca665ff /docker | |
parent | Fix bug in `wait_for_stream_position` (#14856) (diff) | |
download | synapse-5b3af1c7d0c5a8901fada7648136f186726fd135.tar.xz |
Stabilise serving partial join responses (#14839)
Serving partial join responses is no longer experimental. They will only be served under the stable identifier if the the undocumented config flag experimental.msc3706_enabled is set to true. Synapse continues to request a partial join only if the undocumented config flag experimental.faster_joins is set to true; this setting remains present and unaffected.
Diffstat (limited to 'docker')
-rw-r--r-- | docker/complement/conf/workers-shared-extra.yaml.j2 | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/docker/complement/conf/workers-shared-extra.yaml.j2 b/docker/complement/conf/workers-shared-extra.yaml.j2 index 1170694df5..7e9ec23808 100644 --- a/docker/complement/conf/workers-shared-extra.yaml.j2 +++ b/docker/complement/conf/workers-shared-extra.yaml.j2 @@ -94,8 +94,6 @@ allow_device_name_lookup_over_federation: true experimental_features: # Enable history backfilling support msc2716_enabled: true - # server-side support for partial state in /send_join responses - msc3706_enabled: true {% if not workers_in_use %} # client-side support for partial state in /send_join responses faster_joins: true |