mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-07-21 12:38:44 -04:00
Merge pull request #3705 from matrix-org/erikj/fix_inbound_fed_worker
Fix inbound federation on reader worker
This commit is contained in:
commit
b4d6db5c4a
2 changed files with 3 additions and 0 deletions
1
changelog.d/3705.bugfix
Normal file
1
changelog.d/3705.bugfix
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Support more federation endpoints on workers
|
|
@ -32,6 +32,7 @@ from synapse.http.site import SynapseSite
|
||||||
from synapse.metrics import RegistryProxy
|
from synapse.metrics import RegistryProxy
|
||||||
from synapse.metrics.resource import METRICS_PREFIX, MetricsResource
|
from synapse.metrics.resource import METRICS_PREFIX, MetricsResource
|
||||||
from synapse.replication.slave.storage._base import BaseSlavedStore
|
from synapse.replication.slave.storage._base import BaseSlavedStore
|
||||||
|
from synapse.replication.slave.storage.account_data import SlavedAccountDataStore
|
||||||
from synapse.replication.slave.storage.appservice import SlavedApplicationServiceStore
|
from synapse.replication.slave.storage.appservice import SlavedApplicationServiceStore
|
||||||
from synapse.replication.slave.storage.directory import DirectoryStore
|
from synapse.replication.slave.storage.directory import DirectoryStore
|
||||||
from synapse.replication.slave.storage.events import SlavedEventStore
|
from synapse.replication.slave.storage.events import SlavedEventStore
|
||||||
|
@ -54,6 +55,7 @@ logger = logging.getLogger("synapse.app.federation_reader")
|
||||||
|
|
||||||
|
|
||||||
class FederationReaderSlavedStore(
|
class FederationReaderSlavedStore(
|
||||||
|
SlavedAccountDataStore,
|
||||||
SlavedProfileStore,
|
SlavedProfileStore,
|
||||||
SlavedApplicationServiceStore,
|
SlavedApplicationServiceStore,
|
||||||
SlavedPusherStore,
|
SlavedPusherStore,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue