mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 17:54:48 -04:00
Review comments
This commit is contained in:
parent
9fb96889a4
commit
a8d16f6c00
6 changed files with 37 additions and 19 deletions
|
@ -29,7 +29,7 @@ stored in `synapse.storage.schema`.
|
|||
|
||||
from synapse.storage.data_stores import DataStores
|
||||
from synapse.storage.data_stores.main import DataStore
|
||||
from synapse.storage.persist_events import EventsPersistenceStore
|
||||
from synapse.storage.persist_events import EventsPersistenceStorage
|
||||
|
||||
__all__ = ["DataStores", "DataStore"]
|
||||
|
||||
|
@ -44,7 +44,7 @@ class Storage(object):
|
|||
# interfaces.
|
||||
self.main = stores.main
|
||||
|
||||
self.persistence = EventsPersistenceStore(hs, stores)
|
||||
self.persistence = EventsPersistenceStorage(hs, stores)
|
||||
|
||||
|
||||
def are_all_users_on_domain(txn, database_engine, domain):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue