diff options
author | Erik Johnston <erikj@jki.re> | 2017-03-24 13:24:27 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-24 13:24:27 +0000 |
commit | 31d56c3fb53a64fdd01381aad5304da70f99eb01 (patch) | |
tree | 22343bf08bd145b630d92b87f858f0afed1832b6 /synapse/app/client_reader.py | |
parent | Merge pull request #2060 from matrix-org/erikj/cache_hosts_in_room (diff) | |
parent | Add slave transaction store (diff) | |
download | synapse-31d56c3fb53a64fdd01381aad5304da70f99eb01.tar.xz |
Merge pull request #2061 from matrix-org/erikj/add_transaction_store
Add slave transaction store to workers who send federation requests
Diffstat (limited to 'synapse/app/client_reader.py')
-rw-r--r-- | synapse/app/client_reader.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/app/client_reader.py b/synapse/app/client_reader.py index a821a6ce62..e4ea3ab933 100644 --- a/synapse/app/client_reader.py +++ b/synapse/app/client_reader.py @@ -29,6 +29,7 @@ from synapse.replication.slave.storage.keys import SlavedKeyStore from synapse.replication.slave.storage.room import RoomStore from synapse.replication.slave.storage.directory import DirectoryStore from synapse.replication.slave.storage.registration import SlavedRegistrationStore +from synapse.replication.slave.storage.transactions import TransactionStore from synapse.rest.client.v1.room import PublicRoomListRestServlet from synapse.server import HomeServer from synapse.storage.client_ips import ClientIpStore @@ -63,6 +64,7 @@ class ClientReaderSlavedStore( DirectoryStore, SlavedApplicationServiceStore, SlavedRegistrationStore, + TransactionStore, BaseSlavedStore, ClientIpStore, # After BaseSlavedStore because the constructor is different ): |