diff options
author | Matthew Hodgson <matthew@matrix.org> | 2014-12-07 02:26:07 +0000 |
---|---|---|
committer | Matthew Hodgson <matthew@matrix.org> | 2014-12-07 02:26:07 +0000 |
commit | aed62a35832a3ec1c7425ecc99cab06a781263ba (patch) | |
tree | 6dd8bdeb4f79084a084f24f6747c1e1d00fcf973 /synapse/storage/__init__.py | |
parent | Pull in latest matrix-angular_sdk (diff) | |
download | synapse-aed62a35832a3ec1c7425ecc99cab06a781263ba.tar.xz |
track replication destination health, and perform exponential back-off when sending transactions. does *not* yet retry transactions, but drops them on the floor if waiting for a server to recover.
Diffstat (limited to 'synapse/storage/__init__.py')
-rw-r--r-- | synapse/storage/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/__init__.py b/synapse/storage/__init__.py index f15e3dfe62..04ab39341d 100644 --- a/synapse/storage/__init__.py +++ b/synapse/storage/__init__.py @@ -67,7 +67,7 @@ SCHEMAS = [ # Remember to update this number every time an incompatible change is made to # database schema files, so the users will be informed on server restarts. -SCHEMA_VERSION = 8 +SCHEMA_VERSION = 9 class _RollbackButIsFineException(Exception): |