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
This commit is contained in:
Erik Johnston 2019-02-18 14:08:13 +00:00
parent 4151111d95
commit 32e54b472a
2 changed files with 3 additions and 1 deletions

View file

@ -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,))