boto: Remove obsolete patch

This commit is contained in:
Shea Levy
2015-05-29 11:21:49 -04:00
parent 1b93d64168
commit eb0a21a512
2 changed files with 0 additions and 18 deletions

View File

@@ -1,16 +0,0 @@
Cherry-picked from https://github.com/boto/boto/pull/2932
This fix is required for things like docker-registry to interact with S3. Will
be obsolete after the next boto release (> 2.36.0)
--- a/boto/connection.py
+++ b/boto/connection.py
@@ -381,7 +381,7 @@ class HTTPRequest(object):
if 'Content-Length' not in self.headers:
if 'Transfer-Encoding' not in self.headers or \
self.headers['Transfer-Encoding'] != 'chunked':
- self.headers['Content-Length'] = len(self.body)
+ self.headers['Content-Length'] = str(len(self.body))
class HTTPResponse(http_client.HTTPResponse):