diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2020-05-26 11:43:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-26 11:43:17 +0100 |
commit | edd9a7214c467e96f5a694598b2fbcfae3ac2912 (patch) | |
tree | 66d65b666788442ee0b42dd21f05231440d0f491 /UPGRADE.rst | |
parent | Fix incorrect exception handling in KeyUploadServlet.on_POST (#7563) (diff) | |
download | synapse-edd9a7214c467e96f5a694598b2fbcfae3ac2912.tar.xz |
Replace device_27_unique_idx bg update with a fg one (#7562)
The bg update never managed to complete, because it kept being interrupted by transactions which want to take a lock. Just doing it in the foreground isn't that bad, and is a good deal simpler.
Diffstat (limited to 'UPGRADE.rst')
-rw-r--r-- | UPGRADE.rst | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/UPGRADE.rst b/UPGRADE.rst index 41c47e964d..3b5627e852 100644 --- a/UPGRADE.rst +++ b/UPGRADE.rst @@ -75,9 +75,15 @@ for example: wget https://packages.matrix.org/debian/pool/main/m/matrix-synapse-py3/matrix-synapse-py3_1.3.0+stretch1_amd64.deb dpkg -i matrix-synapse-py3_1.3.0+stretch1_amd64.deb -Upgrading to v1.13.0 +Upgrading to v1.14.0 ==================== +This version includes a database update which is run as part of the upgrade, +and which may take a couple of minutes in the case of a large server. Synapse +will not respond to HTTP requests while this update is taking place. + +Upgrading to v1.13.0 +==================== Incorrect database migration in old synapse versions ---------------------------------------------------- @@ -136,12 +142,12 @@ back to v1.12.4 you need to: 2. Decrease the schema version in the database: .. code:: sql - + UPDATE schema_version SET version = 57; 3. Downgrade Synapse by following the instructions for your installation method in the "Rolling back to older versions" section above. - + Upgrading to v1.12.0 ==================== |