diff options
author | Brendan Abolivier <babolivier@matrix.org> | 2022-01-27 17:45:39 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-27 17:45:39 +0000 |
commit | 6d482ba259a55947678390c06b24a7ba91f0ebab (patch) | |
tree | f1ad901cf6484071237937b4d20f13968071dc36 /synapse/storage | |
parent | Create singletons for `StateFilter.{all,none}()` (#11836) (diff) | |
download | synapse-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/storage')
-rw-r--r-- | synapse/storage/database.py | 1 |
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, ) |