From e4b2796f177fa65fa7ed6826173f475a22c0e4bd Mon Sep 17 00:00:00 2001 From: yumoqing Date: Sat, 14 Jun 2025 15:15:02 +0800 Subject: [PATCH] bugfix --- ahserver/functionProcessor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ahserver/functionProcessor.py b/ahserver/functionProcessor.py index 5846462..a4d4469 100644 --- a/ahserver/functionProcessor.py +++ b/ahserver/functionProcessor.py @@ -18,7 +18,7 @@ class FunctionProcessor(BaseProcessor): async def path_call(self, request, params={}): await self.set_run_env(request) - parmas_kw = self.run_ns.get('params_kw') + params_kw = self.run_ns.get('params_kw') path = params.get('path', request.path) path1 = path[len(self.config_opts['leading']):] args = []