Compare commits

...

2 Commits

Author SHA1 Message Date
d6ec7ff8dd :Merge branch 'master' of git.kaiyuancloud.cn:yumoqing/ahserver 2025-06-13 07:27:06 +00:00
060dd7a883 bugfix 2025-06-13 07:26:42 +00:00

View File

@ -44,7 +44,7 @@ class FunctionProcessor(BaseProcessor):
return f(request, params_kw, *args, **self.run_ns)
async def datahandle(self,request):
x = await self.path_call(request, self.path)
x = await self.path_call(request)
if isinstance(x,web.FileResponse):
self.retResponse = x
elif isinstance(x,Response):