Merge pull request #149 from asvetlov/patch-1

aiohttp is slightly faster actually
This commit is contained in:
Eli Uriegas 2016-11-14 10:24:15 -06:00 committed by GitHub
commit ae3d33ad58

View File

@ -15,4 +15,4 @@ async def handle(request):
app = web.Application(loop=loop)
app.router.add_route('GET', '/', handle)
web.run_app(app, port=sys.argv[1])
web.run_app(app, port=sys.argv[1], access_log=None)