reverse arguments in check_routes

This commit is contained in:
Min RK
2016-03-01 19:42:55 +01:00
parent 6375ba30b7
commit b2ece48239

View File

@@ -1091,7 +1091,7 @@ class JupyterHub(Application):
user.last_activity = max(user.last_activity, dt)
self.db.commit()
yield self.proxy.check_routes(routes, self.users)
yield self.proxy.check_routes(self.users, routes)
@gen.coroutine
def start(self):