diff options
author | Erik Johnston <erik@matrix.org> | 2014-08-18 16:25:18 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-08-18 16:25:18 +0100 |
commit | 1422a22970e4ab3f7a37fe672af2f1d1de901c10 (patch) | |
tree | 8c8960d3073b96097ec9d165f38df2c707614d43 /synapse/handlers | |
parent | Make snapshot_all_rooms return results in the correct form, including start a... (diff) | |
download | synapse-1422a22970e4ab3f7a37fe672af2f1d1de901c10.tar.xz |
Fix typos in SQL and where we still had rowid's (which no longer exist)
Diffstat (limited to 'synapse/handlers')
-rw-r--r-- | synapse/handlers/room.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/room.py b/synapse/handlers/room.py index 9e10235fa0..e5dd2e245f 100644 --- a/synapse/handlers/room.py +++ b/synapse/handlers/room.py @@ -280,7 +280,7 @@ class MessageHandler(BaseHandler): "end": token[1], } except: - pass + logger.exception("Failed to get snapshot") logger.debug("snapshot_all_rooms returning: %s", ret) |