Fix harmless exception in port DB script (#15814)

The port DB script would try and run database background tasks, which
could fail if the data they acted on was in the process of being ported.
These exceptions were non fatal.

Fixes #15789
pull/15830/head
Erik Johnston 2023-06-21 14:20:46 +01:00 committed by GitHub
parent 6c749c5124
commit 289ce3b8d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

1
changelog.d/15814.misc Normal file
View File

@ -0,0 +1 @@
Fix harmless exceptions being printed when running the port DB script.

View File

@ -1369,6 +1369,9 @@ def main() -> None:
sys.stderr.write("Database must use the 'psycopg2' connector.\n")
sys.exit(3)
# Don't run the background tasks that get started by the data stores.
hs_config["run_background_tasks_on"] = "some_other_process"
config = HomeServerConfig()
config.parse_config_dict(hs_config, "", "")