diff options
author | Erik Johnston <erikj@jki.re> | 2017-05-15 14:42:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-15 14:42:52 +0100 |
commit | 5e9d75b4a5d57c0ebb78f5d40ff4f9a9c79dcfbc (patch) | |
tree | 0e08ce889642afb50b68412a8b0ba2861e17cdb7 | |
parent | Merge pull request #2214 from matrix-org/rav/hurry_up_purge (diff) | |
parent | Merge pull request #1 from hamber-dick/dev-branch-hamber-dick (diff) | |
download | synapse-5e9d75b4a5d57c0ebb78f5d40ff4f9a9c79dcfbc.tar.xz |
Merge pull request #2215 from hamber-dick/develop
Documantation to chek synapse version
-rw-r--r-- | UPGRADE.rst | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/UPGRADE.rst b/UPGRADE.rst index 9f044719a0..6164df8833 100644 --- a/UPGRADE.rst +++ b/UPGRADE.rst @@ -28,6 +28,15 @@ running: git pull # Update the versions of synapse's python dependencies. python synapse/python_dependencies.py | xargs -n1 pip install --upgrade + +To check whether your update was sucessfull, run: + +.. code:: bash + + # replace your.server.domain with ther domain of your synaspe homeserver + curl https://<your.server.domain>/_matrix/federation/v1/version + +So for the Matrix.org HS server the URL would be: https://matrix.org/_matrix/federation/v1/version. Upgrading to v0.15.0 |