diff options
author | Erik Johnston <erik@matrix.org> | 2021-07-06 13:03:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-06 13:03:16 +0100 |
commit | 6655ea558727138a80ea70fdbd9ee89b041f180f (patch) | |
tree | e847da3bf5fd36a68bf69ebbed2384d60ab1937e /synapse/storage/database.py | |
parent | Handle old staged inbound events (#10303) (diff) | |
download | synapse-6655ea558727138a80ea70fdbd9ee89b041f180f.tar.xz |
Add script for getting info about recently registered users (#10290)
Diffstat (limited to 'synapse/storage/database.py')
-rw-r--r-- | synapse/storage/database.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/database.py b/synapse/storage/database.py index d470cdacde..33c42cf95a 100644 --- a/synapse/storage/database.py +++ b/synapse/storage/database.py @@ -111,7 +111,7 @@ def make_conn( db_config: DatabaseConnectionConfig, engine: BaseDatabaseEngine, default_txn_name: str, -) -> Connection: +) -> "LoggingDatabaseConnection": """Make a new connection to the database and return it. Returns: |