summary refs log tree commit diff
path: root/synapse/handlers
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2019-02-18 14:08:13 +0000
committerErik Johnston <erik@matrix.org>2019-02-18 14:16:07 +0000
commit32e54b472a6c6c12d0b92ac46c8733c300589f19 (patch)
tree31fb5317fcd8de1696066e464f39f9cdeb9d5805 /synapse/handlers
parentMerge pull request #4657 from matrix-org/travis/linda/spelling (diff)
downloadsynapse-32e54b472a6c6c12d0b92ac46c8733c300589f19.tar.xz
Fix kicking guest users in worker mode
When guest_access changes from allowed to forbidden all local guest
users should be kicked from the room. This did not happen when
revocation was received from federation on a worker.

Presumably broken in #4141
Diffstat (limited to 'synapse/handlers')
-rw-r--r--synapse/handlers/_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/_base.py b/synapse/handlers/_base.py
index 704181d2d3..594754cfd8 100644
--- a/synapse/handlers/_base.py
+++ b/synapse/handlers/_base.py
@@ -167,4 +167,4 @@ class BaseHandler(object):
                     ratelimit=False,
                 )
             except Exception as e:
-                logger.warn("Error kicking guest user: %s" % (e,))
+                logger.exception("Error kicking guest user: %s" % (e,))