summary refs log tree commit diff
path: root/synapse/storage
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2015-03-02 16:36:19 +0000
committerErik Johnston <erik@matrix.org>2015-03-02 16:36:19 +0000
commitb41dc687739e92d5debcae5bb9feb21b97cbc178 (patch)
tree8e985e46b282aa76e18430f89df115c6f7e96696 /synapse/storage
parentFix bug which prevented the HS pushing events to the AS due to FrozenEvents (diff)
downloadsynapse-b41dc687739e92d5debcae5bb9feb21b97cbc178.tar.xz
We purposefully don't have a version 14 delta script.
Diffstat (limited to 'synapse/storage')
-rw-r--r--synapse/storage/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/__init__.py b/synapse/storage/__init__.py

index 3753cd28d0..f0b7b8fef3 100644 --- a/synapse/storage/__init__.py +++ b/synapse/storage/__init__.py
@@ -633,7 +633,7 @@ def prepare_database(db_conn): # Run every version since after the current version. for v in range(user_version + 1, SCHEMA_VERSION + 1): - if v == 10: + if v in (10, 14,): raise UpgradeDatabaseException( "No delta for version 10" )