mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-16 14:33:00 +00:00
reverse arguments in check_routes
This commit is contained in:
@@ -1091,7 +1091,7 @@ class JupyterHub(Application):
|
|||||||
user.last_activity = max(user.last_activity, dt)
|
user.last_activity = max(user.last_activity, dt)
|
||||||
|
|
||||||
self.db.commit()
|
self.db.commit()
|
||||||
yield self.proxy.check_routes(routes, self.users)
|
yield self.proxy.check_routes(self.users, routes)
|
||||||
|
|
||||||
@gen.coroutine
|
@gen.coroutine
|
||||||
def start(self):
|
def start(self):
|
||||||
|
Reference in New Issue
Block a user