Skip to content

Commit 134aa51

Browse files
author
Luke Bakken
committed
Merge remote-tracking branch 'gh-277/buffer-http-header-reads' into fixes/lrb/httplib-buffering-gh-277
2 parents a12f6fd + 862c844 commit 134aa51

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

riak/transports/http/connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def _request(self, method, uri, headers={}, body='', stream=False):
3131

3232
try:
3333
self._connection.request(method, uri, body, headers)
34-
response = self._connection.getresponse()
34+
response = self._connection.getresponse(buffering=True)
3535

3636
if stream:
3737
# The caller is responsible for fully reading the

0 commit comments

Comments
 (0)