You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Error handling request
Traceback (most recent call last):
File "(...)/aiohttp/aiohttp/server.py", line 273, in start
yield from self.handle_request(message, payload)
File "(...)/aiohttp/aiohttp/web.py", line 75, in handle_request
yield from match_info.route.handle_expect_header(request))
AttributeError: 'NoneType' object has no attribute 'handle_expect_header'
Note the GET in the "add_route" and the POST in the request.
The same request on /simplepost works fine.
I would expect a 405 response to be returned from the server.
This is not a blocking bug for me, but a bug nonetheless ;)
The text was updated successfully, but these errors were encountered:
Hello,
Hang on to your hats, this is a long bug report ;)
When running this code (modified from one of the examples):
This http request:
Results in this stacktrace:
Note the GET in the "add_route" and the POST in the request.
The same request on /simplepost works fine.
I would expect a 405 response to be returned from the server.
This is not a blocking bug for me, but a bug nonetheless ;)
The text was updated successfully, but these errors were encountered: