mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04:00
Pull in necessary stores in federation_reader
This commit is contained in:
parent
62ace05c45
commit
96a9a29645
@ -36,6 +36,7 @@ from synapse.replication.slave.storage.appservice import SlavedApplicationServic
|
||||
from synapse.replication.slave.storage.directory import DirectoryStore
|
||||
from synapse.replication.slave.storage.events import SlavedEventStore
|
||||
from synapse.replication.slave.storage.keys import SlavedKeyStore
|
||||
from synapse.replication.slave.storage.profile import SlavedProfileStore
|
||||
from synapse.replication.slave.storage.push_rule import SlavedPushRuleStore
|
||||
from synapse.replication.slave.storage.pushers import SlavedPusherStore
|
||||
from synapse.replication.slave.storage.receipts import SlavedReceiptsStore
|
||||
@ -53,6 +54,7 @@ logger = logging.getLogger("synapse.app.federation_reader")
|
||||
|
||||
|
||||
class FederationReaderSlavedStore(
|
||||
SlavedProfileStore,
|
||||
SlavedApplicationServiceStore,
|
||||
SlavedPusherStore,
|
||||
SlavedPushRuleStore,
|
||||
|
@ -14,7 +14,6 @@
|
||||
# limitations under the License.
|
||||
import itertools
|
||||
import logging
|
||||
|
||||
from collections import namedtuple
|
||||
|
||||
from canonicaljson import json
|
||||
|
Loading…
Reference in New Issue
Block a user