[Test] Another try to fix goddamned dummy http server

This commit is contained in:
Vsevolod Stakhov 2022-11-19 15:37:06 +00:00
parent 97137eeb57
commit 0363f2deda
No known key found for this signature in database
GPG Key ID: 07647B6790081437

View File

@ -70,8 +70,9 @@ class MyHandler(http.server.BaseHTTPRequestHandler):
def do_POST(self):
"""Respond to a POST request."""
response = b"hello post"
content_length = int(self.headers['Content-Length'])
body = self.rfile.read(content_length)
content_length = int(self.headers.get('Content-Length', "0")) or 0
if content_length > 0:
_ = self.rfile.read(content_length)
if self.path == "/empty":
self.finish()
return