diff options
author | Richard van der Hoff <richard@matrix.org> | 2020-03-31 17:43:19 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2020-03-31 17:43:58 +0100 |
commit | 7b608cf4683c0df2dbb55aacd472c407a0f6b1fa (patch) | |
tree | fc7754d8ec884268688e706d5fa252161e1ca8c2 /synapse/storage/prepare_database.py | |
parent | Make do_next_background_update return a bool (diff) | |
download | synapse-7b608cf4683c0df2dbb55aacd472c407a0f6b1fa.tar.xz |
Only run one background update at a time
Diffstat (limited to 'synapse/storage/prepare_database.py')
-rw-r--r-- | synapse/storage/prepare_database.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/prepare_database.py b/synapse/storage/prepare_database.py index 6cb7d4b922..1712932f31 100644 --- a/synapse/storage/prepare_database.py +++ b/synapse/storage/prepare_database.py @@ -29,7 +29,7 @@ logger = logging.getLogger(__name__) # Remember to update this number every time a change is made to database # schema files, so the users will be informed on server restarts. -SCHEMA_VERSION = 57 +SCHEMA_VERSION = 58 dir_path = os.path.abspath(os.path.dirname(__file__)) |