We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acf20cc commit 0f27832Copy full SHA for 0f27832
src/microdot_asyncio.py
@@ -79,7 +79,6 @@ async def create(app, client_stream, client_addr):
79
80
# body
81
body = b''
82
- print(Request.max_body_length)
83
if content_length and content_length <= Request.max_body_length:
84
body = await client_stream.readexactly(content_length)
85
stream = None
0 commit comments