diff options
author | Erik Johnston <erikj@jki.re> | 2017-01-10 15:38:30 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-10 15:38:30 +0000 |
commit | d2b00d0866db833911f4db83afa50ec6f30c8994 (patch) | |
tree | 6dd1846bf11afffaea168c1ae1c81d26c3d8ed2a /synapse | |
parent | Merge pull request #1791 from matrix-org/markjh/file_logging (diff) | |
parent | Add paranoia exception catch in Linearizer (diff) | |
download | synapse-d2b00d0866db833911f4db83afa50ec6f30c8994.tar.xz |
Merge pull request #1790 from matrix-org/erikj/linearizer
Add paranoia exception catch in Linearizer
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/util/async.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/synapse/util/async.py b/synapse/util/async.py index 83875edc85..35380bf8ed 100644 --- a/synapse/util/async.py +++ b/synapse/util/async.py @@ -192,8 +192,11 @@ class Linearizer(object): logger.info( "Waiting to acquire linearizer lock %r for key %r", self.name, key ) - with PreserveLoggingContext(): - yield current_defer + try: + with PreserveLoggingContext(): + yield current_defer + except: + logger.exception("Unexpected exception in Linearizer") logger.info("Acquired linearizer lock %r for key %r", self.name, key) |