diff options
author | Travis Ralston <travpc@gmail.com> | 2019-07-03 14:53:22 -0600 |
---|---|---|
committer | Travis Ralston <travpc@gmail.com> | 2019-07-03 14:53:22 -0600 |
commit | b1f2078ef179a1bffc9cac9af00fffae0aff88a1 (patch) | |
tree | dcc70fbc65a799c0302dbfc206fc67a97fce4221 /synapse/api/auth.py | |
parent | Don't cache access tokens (diff) | |
download | synapse-travis/fake-soft-logout.tar.xz |
Diffstat (limited to 'synapse/api/auth.py')
-rw-r--r-- | synapse/api/auth.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/api/auth.py b/synapse/api/auth.py index f5a7ee4576..9ade160269 100644 --- a/synapse/api/auth.py +++ b/synapse/api/auth.py @@ -525,7 +525,7 @@ class Auth(object): 401, "Token soft logged out", errcode=Codes.UNKNOWN_TOKEN, - softLogout=True, + soft_logout=True, ) # we use ret.get() below because *lots* of unit tests stub out |