diff options
author | Daniel Wagner-Hall <daniel@matrix.org> | 2016-01-13 17:09:24 +0000 |
---|---|---|
committer | Daniel Wagner-Hall <daniel@matrix.org> | 2016-01-13 17:09:24 +0000 |
commit | f6fcff360250eb362986835c195a96825567a03d (patch) | |
tree | 458220e02cd6f35c970d4bd6abc2ddbee244b9cf /synapse/storage | |
parent | Merge pull request #482 from matrix-org/markjh/table_name (diff) | |
download | synapse-f6fcff360250eb362986835c195a96825567a03d.tar.xz |
Don't start server if ASes are invalidly configured
Diffstat (limited to 'synapse/storage')
-rw-r--r-- | synapse/storage/appservice.py | 1 |
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): |