From 866b4030379940ac22f4b0f2c1129aecc7a7d88c Mon Sep 17 00:00:00 2001 From: yumoqing Date: Wed, 5 Jul 2023 11:22:13 +0800 Subject: [PATCH] bugfix --- ahserver/auth_api.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ahserver/auth_api.py b/ahserver/auth_api.py index a992ad7..b8e8b03 100755 --- a/ahserver/auth_api.py +++ b/ahserver/auth_api.py @@ -57,6 +57,7 @@ class AuthAPI(AppLogger): @web.middleware async def checkAuth(self,request,handler): + print('checkAuth() called ..................') path = request.path user = await auth.get_auth(request) is_ok = await self.checkUserPermission(user, path)