summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorBrendan Abolivier <babolivier@matrix.org>2022-01-27 17:45:39 +0000
committerGitHub <noreply@github.com>2022-01-27 17:45:39 +0000
commit6d482ba259a55947678390c06b24a7ba91f0ebab (patch)
treef1ad901cf6484071237937b4d20f13968071dc36 /synapse
parentCreate singletons for `StateFilter.{all,none}()` (#11836) (diff)
downloadsynapse-6d482ba259a55947678390c06b24a7ba91f0ebab.tar.xz
Pass `isolation_level` to `runWithConnection` (#11847)
This was missed in https://github.com/matrix-org/synapse/pull/11799
Diffstat (limited to 'synapse')
-rw-r--r--synapse/storage/database.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/storage/database.py b/synapse/storage/database.py
index 7455326ed3..99802228c9 100644
--- a/synapse/storage/database.py
+++ b/synapse/storage/database.py
@@ -748,6 +748,7 @@ class DatabasePool:
                     func,
                     *args,
                     db_autocommit=db_autocommit,
+                    isolation_level=isolation_level,
                     **kwargs,
                 )