diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2023-05-19 07:23:09 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-19 07:23:09 -0400 |
commit | 07771fa487e1d281fdcae35a47db87ab675cb6b3 (patch) | |
tree | 7763fbceb01f2efbd569df961268473e8215c7f0 /synapse/config | |
parent | Fix `HomeServer`s leaking during `trial` test runs (#15630) (diff) | |
download | synapse-07771fa487e1d281fdcae35a47db87ab675cb6b3.tar.xz |
Remove experimental configuration flags & unstable values for faster joins (#15625)
Synapse will no longer send (or respond to) the unstable flags for faster joins. These were only available behind a configuration flag and handled in parallel with the stable flags.
Diffstat (limited to 'synapse/config')
-rw-r--r-- | synapse/config/experimental.py | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/synapse/config/experimental.py b/synapse/config/experimental.py index 6e453bd963..d769b7f668 100644 --- a/synapse/config/experimental.py +++ b/synapse/config/experimental.py @@ -84,18 +84,6 @@ class ExperimentalConfig(Config): "msc3984_appservice_key_query", False ) - # MSC3706 (server-side support for partial state in /send_join responses) - # Synapse will always serve partial state responses to requests using the stable - # query parameter `omit_members`. If this flag is set, Synapse will also serve - # partial state responses to requests using the unstable query parameter - # `org.matrix.msc3706.partial_state`. - self.msc3706_enabled: bool = experimental.get("msc3706_enabled", False) - - # experimental support for faster joins over federation - # (MSC2775, MSC3706, MSC3895) - # requires a target server that can provide a partial join response (MSC3706) - self.faster_joins_enabled: bool = experimental.get("faster_joins", True) - # MSC3720 (Account status endpoint) self.msc3720_enabled: bool = experimental.get("msc3720_enabled", False) |