remove references to unused other_user_cookies

OAuth gets rid of the concept of the Hub managing cookies on behalf of sub-servers
This commit is contained in:
Min RK
2017-04-18 11:21:47 +02:00
parent a555af428d
commit f58015dc57
2 changed files with 0 additions and 5 deletions

View File

@@ -19,9 +19,6 @@ class LogoutHandler(BaseHandler):
if user:
self.log.info("User logged out: %s", user.name)
self.clear_login_cookie()
for name in user.other_user_cookies:
self.clear_login_cookie(name)
user.other_user_cookies = set([])
self.statsd.incr('logout')
self.redirect(url_path_join(self.hub.server.base_url, 'login'), permanent=False)