diff options
author | Erik Johnston <erik@matrix.org> | 2019-02-22 15:27:40 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2019-02-22 15:27:40 +0000 |
commit | b82c9cf4629040681c7d06846422705734acd110 (patch) | |
tree | c41a00260ed79180288dc952876e58e8f38801e8 /synapse/push | |
parent | Correctly handle PusherConfigException (diff) | |
download | synapse-b82c9cf4629040681c7d06846422705734acd110.tar.xz |
Add missing return
Diffstat (limited to 'synapse/push')
-rw-r--r-- | synapse/push/pusherpool.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/push/pusherpool.py b/synapse/push/pusherpool.py index af82e02b46..abf1a1a9c1 100644 --- a/synapse/push/pusherpool.py +++ b/synapse/push/pusherpool.py @@ -231,6 +231,7 @@ class PusherPool: pusherdict.get('pushkey'), e, ) + return except Exception: logger.exception("Couldn't start a pusher: caught Exception") return |