diff options
author | Erik Johnston <erik@matrix.org> | 2019-10-23 12:03:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-23 12:03:03 +0100 |
commit | 7b6d99fa5aed2d8e0f71e75b12b26ade24701963 (patch) | |
tree | c96bca83c8dba442c63c52e8e18bae29a1eb8ce8 /synapse/replication/slave/storage/transactions.py | |
parent | Merge pull request #5726 from matrix-org/uhoreg/e2e_cross-signing2-part2 (diff) | |
parent | Merge branch 'develop' of github.com:matrix-org/synapse into erikj/refactor_s... (diff) | |
download | synapse-7b6d99fa5aed2d8e0f71e75b12b26ade24701963.tar.xz |
Merge pull request #6231 from matrix-org/erikj/refactor_stores
Refactor storage layer to support multiple databases
Diffstat (limited to 'synapse/replication/slave/storage/transactions.py')
-rw-r--r-- | synapse/replication/slave/storage/transactions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/replication/slave/storage/transactions.py b/synapse/replication/slave/storage/transactions.py index 3527beb3c9..ac88e6b8c3 100644 --- a/synapse/replication/slave/storage/transactions.py +++ b/synapse/replication/slave/storage/transactions.py @@ -13,7 +13,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -from synapse.storage.transactions import TransactionStore +from synapse.storage.data_stores.main.transactions import TransactionStore from ._base import BaseSlavedStore |