summary refs log tree commit diff
path: root/synapse/_scripts
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2023-03-21 19:59:28 +0000
committerRichard van der Hoff <richard@matrix.org>2023-03-21 19:59:28 +0000
commita9216edbaa0f44752790040a833847a7898ddc0a (patch)
treed5edbfcdbd8e18c94468248cb259ca26af6038db /synapse/_scripts
parentMerge branch 'release-v1.80' of https://github.com/matrix-org/synapse into re... (diff)
parentRevert "check sqlite database file exists before porting/#14692" (#15301) (diff)
downloadsynapse-a9216edbaa0f44752790040a833847a7898ddc0a.tar.xz
Merge commit '96bcc5d902' into release-v1.80
Diffstat (limited to 'synapse/_scripts')
-rwxr-xr-xsynapse/_scripts/synapse_port_db.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/_scripts/synapse_port_db.py b/synapse/_scripts/synapse_port_db.py

index 2c9cbf8b27..78d76d38ad 100755 --- a/synapse/_scripts/synapse_port_db.py +++ b/synapse/_scripts/synapse_port_db.py
@@ -1329,7 +1329,7 @@ def main() -> None: sqlite_config = { "name": "sqlite3", "args": { - "database": "file:{}?mode=rw".format(args.sqlite_database), + "database": args.sqlite_database, "cp_min": 1, "cp_max": 1, "check_same_thread": False,