summary refs log tree commit diff
diff options
context:
space:
mode:
authorDaniel Wagner-Hall <daniel@matrix.org>2016-01-13 17:09:24 +0000
committerDaniel Wagner-Hall <daniel@matrix.org>2016-01-13 17:09:24 +0000
commitf6fcff360250eb362986835c195a96825567a03d (patch)
tree458220e02cd6f35c970d4bd6abc2ddbee244b9cf
parentMerge pull request #482 from matrix-org/markjh/table_name (diff)
downloadsynapse-f6fcff360250eb362986835c195a96825567a03d.tar.xz
Don't start server if ASes are invalidly configured
-rw-r--r--synapse/storage/appservice.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/storage/appservice.py b/synapse/storage/appservice.py
index eab58d9ce9..25a6f14f40 100644
--- a/synapse/storage/appservice.py
+++ b/synapse/storage/appservice.py
@@ -265,6 +265,7 @@ class ApplicationServiceStore(SQLBaseStore):
             except Exception as e:
                 logger.error("Failed to load appservice from '%s'", config_file)
                 logger.exception(e)
+                raise
 
 
 class ApplicationServiceTransactionStore(SQLBaseStore):