diff --git a/hyper/http20/connection.py b/hyper/http20/connection.py index 62ab61c3..434fa71b 100644 --- a/hyper/http20/connection.py +++ b/hyper/http20/connection.py @@ -170,6 +170,8 @@ def request(self, method, url, body=None, headers={}): # Convert the body to bytes if needed. if body and isinstance(body, (unicode, bytes)): body = to_bytestring(body) + if 'Transfer-Encoding' not in headers.keys(): + self.putheader('Content-Length', str(len(body))) self.endheaders(message_body=body, final=True, stream_id=stream_id)