From 3f46fa965a86708cc193215f57afb396390c031d Mon Sep 17 00:00:00 2001 From: yumoqing Date: Fri, 6 Nov 2020 11:33:24 +0800 Subject: [PATCH] bugfix --- ahserver/processorResource.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ahserver/processorResource.py b/ahserver/processorResource.py index bdecbb4..189e05b 100644 --- a/ahserver/processorResource.py +++ b/ahserver/processorResource.py @@ -121,7 +121,7 @@ class ProcessorResource(StaticResource,Url2File): name = str(request.url) t = TimeCost(name) with t: - x = self._handle1(request) + x = await self._handle1(request) print(name,':', 'time cost=', t.end_time - t.begin_time) return x