Aiohttp.web servers on 3.8 appear to refuse all requests. Tested with 3.7 and it works fine.
For it to handle requests normally.
The server doesn't even receive the request, and the client returns with a ServerDisconnectedError
from aiohttp import web
routes = web.RouteTableDef()
@routes.get("/")
async def hello(request):
return web.Response(text="Hi!")
app = web.Application()
app.add_routes(routes)
web.run_app(app)