summary refs log tree commit diff
path: root/synapse/storage
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2021-01-07 10:35:04 +0000
committerErik Johnston <erik@matrix.org>2021-01-07 10:35:04 +0000
commit91fd180be1198416edb08505dab33fb7eb02dae9 (patch)
tree1b598ca4f6d3347935ac46ce27fd4913f2764646 /synapse/storage
parentMerge branch 'release-v1.25.0' of github.com:matrix-org/synapse into matrix-o... (diff)
parentEmpty iterables should count towards cache usage. (#9028) (diff)
downloadsynapse-91fd180be1198416edb08505dab33fb7eb02dae9.tar.xz
Merge remote-tracking branch 'origin/develop' into matrix-org-hotfixes
Diffstat (limited to 'synapse/storage')
-rw-r--r--synapse/storage/database.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/synapse/storage/database.py b/synapse/storage/database.py

index d1b5760c2c..b70ca3087b 100644 --- a/synapse/storage/database.py +++ b/synapse/storage/database.py
@@ -42,7 +42,6 @@ from synapse.api.errors import StoreError from synapse.config.database import DatabaseConnectionConfig from synapse.logging.context import ( LoggingContext, - LoggingContextOrSentinel, current_context, make_deferred_yieldable, ) @@ -671,12 +670,15 @@ class DatabasePool: Returns: The result of func """ - parent_context = current_context() # type: Optional[LoggingContextOrSentinel] - if not parent_context: + curr_context = current_context() + if not curr_context: logger.warning( "Starting db connection from sentinel context: metrics will be lost" ) parent_context = None + else: + assert isinstance(curr_context, LoggingContext) + parent_context = curr_context start_time = monotonic_time()