summary refs log tree commit diff
diff options
context:
space:
mode:
authorDavid Robertson <davidr@element.io>2022-09-06 17:35:25 +0100
committerDavid Robertson <davidr@element.io>2022-09-06 17:35:25 +0100
commit5f11d0cd7e8faba995df3a35c5cf9a0c3fd09957 (patch)
tree3284436f22a4989d6e30114b920e5d42b263bfbb
parentActually fix typechecking with latest types-jsonschema (#13724) (diff)
downloadsynapse-5f11d0cd7e8faba995df3a35c5cf9a0c3fd09957.tar.xz
Fix db update script invocation during schema dump
-rwxr-xr-xscripts-dev/make_full_schema.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts-dev/make_full_schema.sh b/scripts-dev/make_full_schema.sh
index f0e22d4ca2..71e914c984 100755
--- a/scripts-dev/make_full_schema.sh
+++ b/scripts-dev/make_full_schema.sh
@@ -147,7 +147,7 @@ python -m synapse.app.homeserver --generate-keys -c "$SQLITE_CONFIG"
 
 # Make sure the SQLite3 database is using the latest schema and has no pending background update.
 echo "Running db background jobs..."
-synapse/_scripts/update_synapse_database.py --database-config --run-background-updates "$SQLITE_CONFIG"
+synapse/_scripts/update_synapse_database.py --database-config "$SQLITE_CONFIG" --run-background-updates
 
 # Create the PostgreSQL database.
 echo "Creating postgres database..."