Pull in necessary stores in federation_reader

pull/3653/head
Erik Johnston 2018-07-26 13:35:36 +01:00
parent 62ace05c45
commit 96a9a29645
2 changed files with 2 additions and 1 deletions

View File

@ -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,

View File

@ -14,7 +14,6 @@
# limitations under the License.
import itertools
import logging
from collections import namedtuple
from canonicaljson import json