mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2025-05-05 03:45:03 -04:00
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.
This commit is contained in:
parent
7eb198ddc8
commit
02755c3188
3 changed files with 1 additions and 6 deletions
|
@ -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 = {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue