diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-01-31 10:13:32 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-31 10:13:32 -0500 |
commit | 02755c31882b75ae6e71d9033ed1e72d0fb7c00b (patch) | |
tree | 64de055f72f9e854935c801677800ae1a71e0a1a /synapse/storage | |
parent | Remove not needed old table of contents in documentation (#11860) (diff) | |
download | synapse-02755c31882b75ae6e71d9033ed1e72d0fb7c00b.tar.xz |
Remove the obsolete MSC1849 configuration flag. (#11843)
MSC1849 was replaced by MSC2675, which was merged. The configuration flag, which defaulted to true, is no longer useful.
Diffstat (limited to 'synapse/storage')
-rw-r--r-- | synapse/storage/databases/main/relations.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/synapse/storage/databases/main/relations.py b/synapse/storage/databases/main/relations.py index a9a5dd5f03..37468a5183 100644 --- a/synapse/storage/databases/main/relations.py +++ b/synapse/storage/databases/main/relations.py @@ -75,7 +75,6 @@ class RelationsWorkerStore(SQLBaseStore): ): super().__init__(database, db_conn, hs) - self._msc1849_enabled = hs.config.experimental.msc1849_enabled self._msc3440_enabled = hs.config.experimental.msc3440_enabled @cached(tree=True) @@ -683,9 +682,6 @@ class RelationsWorkerStore(SQLBaseStore): A map of event ID to the bundled aggregation for the event. Not all events may have bundled aggregations in the results. """ - # If bundled aggregations are disabled, nothing to do. - if not self._msc1849_enabled: - return {} # TODO Parallelize. results = {} |