From 959be94c93c501820fdf69af9d025063c3073c7c Mon Sep 17 00:00:00 2001 From: yumoqing Date: Mon, 21 Mar 2022 16:41:03 +0800 Subject: [PATCH] bugfix --- ahserver/proxyProcessor.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ahserver/proxyProcessor.py b/ahserver/proxyProcessor.py index 8835e41..f310762 100644 --- a/ahserver/proxyProcessor.py +++ b/ahserver/proxyProcessor.py @@ -16,6 +16,7 @@ class proxyProcessor(BaseProcessor): te = self.run_ns['tmpl_engine'] txt = await te.render(url,**ns) data = json.loads(txt) + print('proxyProcessor: data=', data) return data async def datahandle(self,request): @@ -34,6 +35,8 @@ class proxyProcessor(BaseProcessor): status = res.status, body = body ) + print('proxy: datahandle() finish', self.retResponse) + def setheaders(self): pass