Make select more sensible when dseleting access tokens, rename pusher deletion to match access token deletion and make exception arg optional.

This commit is contained in:
David Baker 2016-03-11 14:34:09 +00:00
parent f523177850
commit af59826a2f
3 changed files with 5 additions and 7 deletions

View file

@ -441,7 +441,7 @@ class AuthHandler(BaseHandler):
yield self.store.user_delete_access_tokens(
user_id, except_access_token_ids
)
yield self.hs.get_pusherpool().remove_pushers_by_user_except_access_tokens(
yield self.hs.get_pusherpool().remove_pushers_by_user(
user_id, except_access_token_ids
)