diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2022-02-17 16:11:59 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-17 16:11:59 +0000 |
commit | da0e9f8efdac1571eab35ad2cc842073ca54769c (patch) | |
tree | 75824b2f9e0c9b1ba5eb8f943b21b13a411044ec /synapse/config | |
parent | Configure `tox` to use `venv` (#12015) (diff) | |
download | synapse-da0e9f8efdac1571eab35ad2cc842073ca54769c.tar.xz |
Faster joins: parse msc3706 fields in send_join response (#12011)
Part of my work on #11249: add code to handle the new fields added in MSC3706.
Diffstat (limited to 'synapse/config')
-rw-r--r-- | synapse/config/experimental.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/synapse/config/experimental.py b/synapse/config/experimental.py index 09d692d9a1..12b5638cf8 100644 --- a/synapse/config/experimental.py +++ b/synapse/config/experimental.py @@ -64,3 +64,7 @@ class ExperimentalConfig(Config): # MSC3706 (server-side support for partial state in /send_join responses) self.msc3706_enabled: bool = experimental.get("msc3706_enabled", False) + + # experimental support for faster joins over federation (msc2775, msc3706) + # requires a target server with msc3706_enabled enabled. + self.faster_joins_enabled: bool = experimental.get("faster_joins", False) |