diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2019-03-28 13:43:25 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-28 13:43:25 +0000 |
commit | 4eeb2c2f0757cee4b258143dfa6aa6588d020175 (patch) | |
tree | 74804850760cf5625d893ec1e4d2218b1f23bbdd /synapse/app/federation_sender.py | |
parent | Run `black` on some storage modules that the stats branch touches (#4959) (diff) | |
parent | changelog (diff) | |
download | synapse-4eeb2c2f0757cee4b258143dfa6aa6588d020175.tar.xz |
Merge pull request #4953 from matrix-org/rav/refactor_replication_streams
Split up replication.tcp.streams into smaller files
Diffstat (limited to 'synapse/app/federation_sender.py')
-rw-r--r-- | synapse/app/federation_sender.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/app/federation_sender.py b/synapse/app/federation_sender.py index 9711a7147c..1d43f2b075 100644 --- a/synapse/app/federation_sender.py +++ b/synapse/app/federation_sender.py @@ -38,7 +38,7 @@ from synapse.replication.slave.storage.receipts import SlavedReceiptsStore from synapse.replication.slave.storage.registration import SlavedRegistrationStore from synapse.replication.slave.storage.transactions import SlavedTransactionStore from synapse.replication.tcp.client import ReplicationClientHandler -from synapse.replication.tcp.streams import ReceiptsStream +from synapse.replication.tcp.streams._base import ReceiptsStream from synapse.server import HomeServer from synapse.storage.engines import create_engine from synapse.types import ReadReceipt |