summary refs log tree commit diff
path: root/synapse/replication/slave/storage/_base.py
diff options
context:
space:
mode:
authorH. Shay <hillerys@element.io>2022-06-06 20:33:46 -0700
committerH. Shay <hillerys@element.io>2022-06-06 20:33:46 -0700
commitaf75e0d7222c1fb057ced2a93c75fb492fcbd1ba (patch)
treea253dd9d4bac086162e0d090882b26813205d439 /synapse/replication/slave/storage/_base.py
parentconditionally import sqlite and postgres in engines/__init__.py (diff)
downloadsynapse-af75e0d7222c1fb057ced2a93c75fb492fcbd1ba.tar.xz
fix import errors from moving sqlite/postgres import statements in engine
Diffstat (limited to 'synapse/replication/slave/storage/_base.py')
-rw-r--r--synapse/replication/slave/storage/_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/replication/slave/storage/_base.py b/synapse/replication/slave/storage/_base.py

index 7644146dba..187952ced2 100644 --- a/synapse/replication/slave/storage/_base.py +++ b/synapse/replication/slave/storage/_base.py
@@ -17,7 +17,7 @@ from typing import TYPE_CHECKING, Optional from synapse.storage.database import DatabasePool, LoggingDatabaseConnection from synapse.storage.databases.main.cache import CacheInvalidationWorkerStore -from synapse.storage.engines import PostgresEngine +from synapse.storage.engines.postgres import PostgresEngine from synapse.storage.util.id_generators import MultiWriterIdGenerator if TYPE_CHECKING: